1
0
Fork 0
mirror of https://code.forgejo.org/actions/setup-node synced 2025-06-25 20:58:02 +02:00

Add auth and ci

This commit is contained in:
Danny McCormick 2019-05-31 12:17:28 -04:00
parent eac926003b
commit caa2ca642d
9 changed files with 139 additions and 17 deletions

21
.github/main.workflow vendored Normal file
View 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"
}