mirror of https://github.com/actions/toolkit
15 lines
212 B
Plaintext
15 lines
212 B
Plaintext
|
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"
|
||
|
}
|