Skip to content

Add github workflow test file #1

Add github workflow test file

Add github workflow test file #1

Workflow file for this run

name: Unit Tests
on: [push]
jobs:
tests:
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@v3
- name: Set Node version
uses: actions/setup-node@v3
with:
node-version-file: '.nvmrc'
- name: npm install
run: npm ci
- name: Unit Tests
run: npm test