Use azp for cross-platform support for now

This commit is contained in:
Danny McCormick 2019-06-07 09:24:57 -04:00
parent 79f71d92a1
commit 5edad1ec64
2 changed files with 40 additions and 27 deletions

27
.github/main.workflow vendored
View file

@ -1,27 +0,0 @@
workflow "CI" {
on = "push"
resolves = ["Format", "Build", "Test"]
}
action "Dependencies" {
uses = "actions/npm@v2.0.0"
args = "install"
}
action "Build" {
needs = "Dependencies"
uses = "actions/npm@v2.0.0"
args = "run build"
}
action "Format" {
needs = "Dependencies"
uses = "actions/npm@v2.0.0"
args = "run format-check"
}
action "Test" {
needs = "Dependencies"
uses = "actions/npm@v2.0.0"
args = "test"
}