Skip to content

Merge pull request #70 from nurRiyad/riyad/fix #4

Merge pull request #70 from nurRiyad/riyad/fix

Merge pull request #70 from nurRiyad/riyad/fix #4

Workflow file for this run

# This workflow will do a clean installation of node dependencies, check linting and build
# For more information see: https://docs.github.com/en/actions/automating-builds-and-tests/building-and-testing-nodejs
name: Node.js CI
on:
push:
branches: ['main']
pull_request:
branches: ['main']
jobs:
build:
runs-on: ubuntu-latest
steps:
- name: Check Code
uses: actions/checkout@v4
- name: Setup Node.js
uses: actions/setup-node@v4
with:
node-version: '20'
cache: 'npm'
- name: Install dependency
run: npm ci
- name: Check Linting
run: npm run lint
- name: Playgourd build check
run: npm run build