Add a workflow for running tests

This commit is contained in:
Jonathan Clem
2019-04-19 15:23:03 -04:00
parent f026c43b81
commit 37e19115be

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"
}