Skip to content

Commit 7868dc4

Browse files
committed
Use node docker image
1 parent c6e85e0 commit 7868dc4

File tree

1 file changed

+4
-4
lines changed

1 file changed

+4
-4
lines changed

.github/main.workflow

Lines changed: 4 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -4,21 +4,21 @@ workflow "Main" {
44
}
55

66
action "Install" {
7-
uses = "actions/npm@master"
7+
uses = "docker://node"
88
runs = "npm"
99
args = "install"
1010
}
1111

1212
action "Test" {
1313
needs = "Install"
14-
uses = "actions/npm@master"
14+
uses = "docker://node"
1515
runs = "npm"
1616
args = "test"
1717
}
1818

1919
action "Build" {
2020
needs = "Install"
21-
uses = "actions/npm@master"
21+
uses = "docker://node"
2222
runs = "npm"
2323
args = "run build"
2424
}
@@ -32,7 +32,7 @@ action "Master" {
3232

3333
action "Publish" {
3434
needs = "Master"
35-
uses = "actions/npm@master"
35+
uses = "docker://node"
3636
runs = "npx"
3737
args = "semantic-release"
3838
secrets = ["NPM_TOKEN", "GITHUB_TOKEN"]

0 commit comments

Comments
 (0)