added first git workflow

This commit is contained in:
Eric Passmore
2022-08-16 18:00:05 -07:00
parent 1271b842e5
commit 307952aea9
+15
View File
@@ -0,0 +1,15 @@
name: unit-tests
on:
push:
branches:
- main
jobs:
unit-tests-job:
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@v3
- uses: actions/setup-node@v3
with:
node-version: '16'
- run: npm run build
- run: npm run test