We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent a73545f commit 31698eeCopy full SHA for 31698ee
.github/main.workflow
@@ -0,0 +1,15 @@
1
+workflow "Install & Test" {
2
+ on = "push"
3
+ resolves = ["npm test"]
4
+}
5
+
6
+action "npm install" {
7
+ uses = "actions/npm@59b64a598378f31e49cb76f27d6f3312b582f680"
8
+ runs = "install"
9
10
11
+action "npm test" {
12
13
+ runs = "test"
14
+ needs = ["npm install"]
15
0 commit comments