mirror of
https://github.com/actions/setup-node
synced 2025-04-04 08:05:50 +00:00
Add actions ci
This commit is contained in:
parent
3b7fa72b60
commit
a0d03f592f
1 changed files with 27 additions and 0 deletions
27
.github/main.workflow
vendored
Normal file
27
.github/main.workflow
vendored
Normal file
|
@ -0,0 +1,27 @@
|
|||
workflow "CI" {
|
||||
on = "push"
|
||||
resolves = ["Format", "Test"]
|
||||
}
|
||||
|
||||
action "Dependencies" {
|
||||
uses = "actions/npm@v2.0.0"
|
||||
args = "ci"
|
||||
}
|
||||
|
||||
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 = "Build"
|
||||
uses = "actions/npm@v2.0.0"
|
||||
args = "test"
|
||||
}
|
Loading…
Add table
Reference in a new issue