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