Skip to content

Commit 3c24615

Browse files
committed
Update main.workflow
1 parent e034bc4 commit 3c24615

File tree

1 file changed

+21
-0
lines changed

1 file changed

+21
-0
lines changed

Diff for: .github/main.workflow

+21
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,21 @@
1+
workflow "Build, Lint and Package" {
2+
on = "push"
3+
resolves = ["Package", "Lint"]
4+
}
5+
6+
action "Build" {
7+
uses = "actions/npm@master"
8+
args = "install"
9+
}
10+
11+
action "Lint" {
12+
needs = "Build"
13+
uses = "actions/npm@master"
14+
args = "lint"
15+
}
16+
17+
action "Package" {
18+
needs = "Build"
19+
uses = "actions/npm@master"
20+
args = "package"
21+
}

0 commit comments

Comments
 (0)