Skip to content

Update code documentation (#22) #44

Update code documentation (#22)

Update code documentation (#22) #44

Workflow file for this run

name: Frontend CI
on:
push:
branches:
- main
pull_request:
branches:
- main
jobs:
build-and-test:
runs-on: ubuntu-latest
steps:
- name: Checkout code
uses: actions/checkout@v2
- name: Setup Node.js
uses: actions/setup-node@v2
with:
node-version: '16'
- name: Install dependencies
working-directory: frontend
run: npm install
- name: Build frontend
working-directory: frontend
run: npm run build
- name: Run frontend tests
working-directory: frontend
run: npm test