Skip to content

Commit 4160500

Browse files
authored
Update main.workflow
1 parent b9ed405 commit 4160500

File tree

1 file changed

+15
-0
lines changed

1 file changed

+15
-0
lines changed

.github/main.workflow

+15
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,15 @@
1+
workflow "New workflow" {
2+
resolves = ["GitHub Action for npm-1"]
3+
on = "push"
4+
}
5+
6+
action "GitHub Action for npm" {
7+
uses = "actions/npm@59b64a598378f31e49cb76f27d6f3312b582f680"
8+
runs = "npm install"
9+
}
10+
11+
action "GitHub Action for npm-1" {
12+
uses = "actions/npm@59b64a598378f31e49cb76f27d6f3312b582f680"
13+
needs = ["GitHub Action for npm"]
14+
runs = "npm test"
15+
}

0 commit comments

Comments
 (0)