Skip to content

Build GH Action and fix linting #699

Build GH Action and fix linting

Build GH Action and fix linting #699

Workflow file for this run

name: CI Frontend
on:
push:
branches:
- master
pull_request:
branches:
- master
jobs:
frontend:
runs-on: ${{ matrix.os }}
strategy:
matrix:
os: [ubuntu-22.04]
steps:
- uses: actions/checkout@v2
- uses: actions/setup-node@v3
with:
node-version: '16'
- name: Install dependencies
run: npm install
- name: Run frontend tests
run: npm run test