Skip to content

Commit

Permalink
Create Test workflow
Browse files Browse the repository at this point in the history
  • Loading branch information
nicolo-ribaudo committed Dec 17, 2018
1 parent 8a389ee commit 428b6a1
Showing 1 changed file with 23 additions and 0 deletions.
23 changes: 23 additions & 0 deletions eslint/babel-eslint-plugin-development/.github/main.workflow
@@ -0,0 +1,23 @@
workflow "Build, Lint and Test" {
resolves = ["Test", "Lint"]
on = "push"
}

action "Build" {
uses = "docker://node:10"
runs = "yarn"
}

action "Test" {
needs = "Build"
uses = "docker://node:10"
runs = "yarn"
args = "test"
}

action "Lint" {
needs = "Build"
uses = "docker://node:10"
runs = "yarn"
args = "lint"
}

0 comments on commit 428b6a1

Please sign in to comment.