We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent c6e85e0 commit 7868dc4Copy full SHA for 7868dc4
.github/main.workflow
@@ -4,21 +4,21 @@ workflow "Main" {
4
}
5
6
action "Install" {
7
- uses = "actions/npm@master"
+ uses = "docker://node"
8
runs = "npm"
9
args = "install"
10
11
12
action "Test" {
13
needs = "Install"
14
15
16
args = "test"
17
18
19
action "Build" {
20
21
22
23
args = "run build"
24
@@ -32,7 +32,7 @@ action "Master" {
32
33
action "Publish" {
34
needs = "Master"
35
36
runs = "npx"
37
args = "semantic-release"
38
secrets = ["NPM_TOKEN", "GITHUB_TOKEN"]
0 commit comments