Skip to content

Commit 3c5d3d3

Browse files
authored
Update main.workflow
1 parent 39907c0 commit 3c5d3d3

File tree

1 file changed

+7
-1
lines changed

1 file changed

+7
-1
lines changed

.github/main.workflow

Lines changed: 7 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -3,7 +3,13 @@ workflow "Build Workflow" {
33
resolves = ["GitHub Action for npm-1"]
44
}
55

6+
action "GitHub Action for npm" {
7+
uses = "actions/npm@e7aaefed7c9f2e83d493ff810f17fa5ccd7ed437"
8+
runs = "install"
9+
}
10+
611
action "GitHub Action for npm-1" {
712
uses = "actions/npm@e7aaefed7c9f2e83d493ff810f17fa5ccd7ed437"
8-
runs = "build"
13+
needs = ["GitHub Action for npm"]
14+
runs = "run build"
915
}

0 commit comments

Comments
 (0)