We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent e034bc4 commit 3c24615Copy full SHA for 3c24615
.github/main.workflow
@@ -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
14
+ args = "lint"
15
16
17
+action "Package" {
18
19
20
+ args = "package"
21
0 commit comments