Added testing action workflow

This commit is contained in:
Dustin Brett
2021-01-09 22:23:15 -08:00
parent 266cae5354
commit cd98f27080

13
.github/workflows/main.yml vendored Normal file
View File

@@ -0,0 +1,13 @@
name: Tests
on: push
jobs:
tests:
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@v2
- name: Install Modules
run: npm install
- name: Run Tests
run: npm test