Skip to content

Updated Margins

Updated Margins #107

Workflow file for this run

name: Frontend CI
on:
push:
paths:
- 'src/**'
pull_request:
paths:
- 'src/**'
jobs:
build:
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@v2
- name: Install Node.js
uses: actions/setup-node@v2
with:
node-version: '14'
- name: Install npm dependencies
run: |
cd src
npm install
- name: Run frontend tests
run: |
cd src
npm test -- --coverage