Skip to content

Commit ae556ac

Browse files
fix main workflow
1 parent 31698ee commit ae556ac

File tree

1 file changed

+2
-2
lines changed

1 file changed

+2
-2
lines changed

.github/main.workflow

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -5,11 +5,11 @@ workflow "Install & Test" {
55

66
action "npm install" {
77
uses = "actions/npm@59b64a598378f31e49cb76f27d6f3312b582f680"
8-
runs = "install"
8+
args = "install"
99
}
1010

1111
action "npm test" {
1212
uses = "actions/npm@59b64a598378f31e49cb76f27d6f3312b582f680"
13-
runs = "test"
1413
needs = ["npm install"]
14+
args = "test"
1515
}

0 commit comments

Comments
 (0)