Skip to content

Add initial tests for front-end #1

Add initial tests for front-end

Add initial tests for front-end #1

Workflow file for this run

name: Front-end
on:
push:
branches:
- main
paths:
- front-end/**
pull_request:
branches:
- main
paths:
- front-end/**
jobs:
test:
name: Test and build
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@v2
- uses: actions/setup-node@v2
with:
node-version: '20'
- name: Install dependencies
run: npm ci
- name: Build production bundle
run: |
# npm run lint
npm test -- --coverage
npm run build