mirror of
https://github.com/actions/setup-node.git
synced 2025-12-15 01:01:38 +08:00
Use azp for cross-platform support for now
This commit is contained in:
27
.github/main.workflow
vendored
27
.github/main.workflow
vendored
@@ -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"
|
||||
}
|
||||
Reference in New Issue
Block a user