1
0
Fork 0

Add a workflow for running tests

pull/1/head
Jonathan Clem 2019-04-19 15:23:03 -04:00
parent f026c43b81
commit 37e19115be
No known key found for this signature in database
GPG Key ID: 48C5B22E9FD6E80F
1 changed files with 15 additions and 0 deletions

15
.github/main.workflow vendored Normal file
View File

@ -0,0 +1,15 @@
workflow "CI" {
on = "push"
resolves = "Test"
}
action "Dependencies" {
uses = "actions/npm@v2.0.0"
args = "ci"
}
action "Test" {
needs = "Dependencies"
uses = "actions/npm@v2.0.0"
args = "test"
}