Skip to content

Commit

Permalink
Update main.workflow
Browse files Browse the repository at this point in the history
  • Loading branch information
eaviles authored Jun 19, 2019
1 parent 6f3197f commit 14d49d7
Showing 1 changed file with 21 additions and 0 deletions.
21 changes: 21 additions & 0 deletions .github/main.workflow
Original file line number Diff line number Diff line change
@@ -0,0 +1,21 @@
workflow "Build, lint and test" {
resolves = ["Test"]
on = "push"
}

action "Build" {
uses = "actions/npm@59b64a598378f31e49cb76f27d6f3312b582f680"
runs = "install"
}

action "Lint" {
uses = "actions/npm@59b64a598378f31e49cb76f27d6f3312b582f680"
runs = "run eslint"
needs = ["Build"]
}

action "Test" {
uses = "actions/npm@59b64a598378f31e49cb76f27d6f3312b582f680"
runs = "test"
needs = ["Lint"]
}

0 comments on commit 14d49d7

Please sign in to comment.