mirror of https://github.com/actions/toolkit
Add a workflow for running tests
parent
f026c43b81
commit
37e19115be
|
@ -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"
|
||||
}
|
Loading…
Reference in New Issue