Skip to content

Merge pull request #68 from apsinghdev/fix/hide-menu-on-click #21

Merge pull request #68 from apsinghdev/fix/hide-menu-on-click

Merge pull request #68 from apsinghdev/fix/hide-menu-on-click #21

Workflow file for this run

name: Frontend CI
on:
push:
branches: [ main ]
paths:
- 'client/**'
pull_request:
branches: [ main ]
paths:
- 'client/**'
jobs:
build:
runs-on: ubuntu-latest
defaults:
run:
working-directory: ./client
steps:
- uses: actions/checkout@v2
- name: Set up Node.js
uses: actions/setup-node@v2
with:
node-version: '>=18'
- name: Install dependencies
run: npm ci
# - name: Run tests
# run: npm test // Add tests later
- name: Build
run: npm run build