test(web): add unit test framework

This commit is contained in:
Paul Armstrong
2021-02-09 19:48:48 -06:00
committed by Blake Blackshear
parent cbb9685eeb
commit 4df1ae9764
10 changed files with 5317 additions and 30 deletions
+14
View File
@@ -30,3 +30,17 @@ jobs:
- name: Build
run: npm run build
working-directory: ./web
web_test:
name: Web - Test
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@master
- uses: actions/setup-node@master
with:
node-version: 14.x
- run: npm install
working-directory: ./web
- name: Test
run: npm run test
working-directory: ./web