We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent a343c42 commit c6e85e0Copy full SHA for c6e85e0
.github/main.workflow
@@ -1,28 +1,31 @@
1
-workflow "Main Workflow" {
+workflow "Main" {
2
on = "push"
3
resolves = ["Publish"]
4
}
5
6
action "Install" {
7
uses = "actions/npm@master"
8
+ runs = "npm"
9
args = "install"
10
11
12
action "Test" {
13
needs = "Install"
14
15
16
args = "test"
17
18
19
action "Build" {
- needs = "Test"
20
+ needs = "Install"
21
22
23
args = "run build"
24
25
26
# Filter for master branch
27
action "Master" {
- needs = "Build"
28
+ needs = ["Test", "Build"]
29
uses = "actions/bin/filter@master"
30
args = "branch master"
31
0 commit comments