mirror of https://github.com/mthenw/frontail.git
Temporary remove GH workflow because of https://github.com/actions/bin/issues/13
parent
953c6b7dbe
commit
26c3957457
|
@ -1,34 +0,0 @@
|
|||
workflow "Build, Lint, Test, and Publish" {
|
||||
on = "push"
|
||||
resolves = ["Publish"]
|
||||
}
|
||||
|
||||
action "Build" {
|
||||
uses = "actions/npm@master"
|
||||
args = "install"
|
||||
}
|
||||
|
||||
action "Lint" {
|
||||
needs = "Build"
|
||||
uses = "actions/npm@master"
|
||||
args = "run lint"
|
||||
}
|
||||
|
||||
action "Test" {
|
||||
needs = "Lint"
|
||||
uses = "actions/npm@master"
|
||||
args = "test"
|
||||
}
|
||||
|
||||
action "Tag" {
|
||||
needs = "Test"
|
||||
uses = "actions/bin/filter@master"
|
||||
args = "tag"
|
||||
}
|
||||
|
||||
action "Publish" {
|
||||
needs = "Tag"
|
||||
uses = "actions/npm@master"
|
||||
args = "publish --access public"
|
||||
secrets = ["NPM_AUTH_TOKEN"]
|
||||
}
|
Loading…
Reference in New Issue