Test doesnt depend on build
parent
61cf07b2f3
commit
07e39ed137
|
|
@ -1,6 +1,6 @@
|
||||||
workflow "CI" {
|
workflow "CI" {
|
||||||
on = "push"
|
on = "push"
|
||||||
resolves = ["Format", "Test"]
|
resolves = ["Format", "Build", "Test"]
|
||||||
}
|
}
|
||||||
|
|
||||||
action "Dependencies" {
|
action "Dependencies" {
|
||||||
|
|
@ -21,7 +21,7 @@ action "Format" {
|
||||||
}
|
}
|
||||||
|
|
||||||
action "Test" {
|
action "Test" {
|
||||||
needs = "Build"
|
needs = "Dependencies"
|
||||||
uses = "actions/npm@v2.0.0"
|
uses = "actions/npm@v2.0.0"
|
||||||
args = "test"
|
args = "test"
|
||||||
}
|
}
|
||||||
Loading…
Reference in New Issue