mirror of
https://github.com/actions/setup-node.git
synced 2025-06-28 13:43:48 +00:00
Add auth and ci
This commit is contained in:
parent
eac926003b
commit
caa2ca642d
9 changed files with 139 additions and 17 deletions
21
.github/main.workflow
vendored
Normal file
21
.github/main.workflow
vendored
Normal file
|
@ -0,0 +1,21 @@
|
|||
workflow "CI" {
|
||||
on = "push"
|
||||
resolves = ["Format", "Build"]
|
||||
}
|
||||
|
||||
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"
|
||||
}
|
Loading…
Add table
Add a link
Reference in a new issue