Create tests.yml

This commit is contained in:
dangered wolf 2022-08-08 17:33:29 -04:00
parent 35dbb7dc70
commit 55a7925b1d
No known key found for this signature in database
GPG key ID: 41E4D37680ED8B58

20
.github/workflows/tests.yml vendored Normal file
View file

@ -0,0 +1,20 @@
name: Tests
on:
push:
branches: [main, unit-tests]
pull_request:
branches: [main, unit-tests]
jobs:
build:
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@v3
- uses: actions/setup-node@v3
with:
node-version: '16'
cache: 'npm'
cache-dependency-path: package-lock.json
- run: npm install
- run: npm test