Skip to content

Commit

Permalink
Update and rename .github to .github/build.workflow
Browse files Browse the repository at this point in the history
  • Loading branch information
0xF6 committed Oct 14, 2019
1 parent 54a1a70 commit 4fb0638
Showing 1 changed file with 18 additions and 0 deletions.
18 changes: 18 additions & 0 deletions .github/build.workflow
Original file line number Diff line number Diff line change
@@ -0,0 +1,18 @@
workflow "build and test" {
on = "push"
resolves = [
"test",
"build",
]
}

action "build" {
uses = "actions/npm@master"
args = "ci"
}

action "test" {
needs = "build"
uses = "actions/npm@master"
args = "t"
}

0 comments on commit 4fb0638

Please sign in to comment.