Skip to content

Commit

Permalink
Update main.workflow
Browse files Browse the repository at this point in the history
  • Loading branch information
chee committed Feb 19, 2019
1 parent ed5b609 commit a6a7c98
Showing 1 changed file with 15 additions and 0 deletions.
15 changes: 15 additions & 0 deletions .github/main.workflow
@@ -0,0 +1,15 @@
workflow "New workflow" {
on = "push"
resolves = ["Run tests"]
}

action "Install dependencies" {
uses = "actions/npm@59b64a598378f31e49cb76f27d6f3312b582f680"
args = "install"
}

action "Run tests" {
uses = "actions/npm@59b64a598378f31e49cb76f27d6f3312b582f680"
args = "test"
needs = ["Install dependencies"]
}

0 comments on commit a6a7c98

Please sign in to comment.