mirror of
https://github.com/judge2020/cloudflare-connectivity-test.git
synced 2026-04-28 11:30:16 +00:00
15 lines
270 B
HCL
15 lines
270 B
HCL
workflow "Push" {
|
|
on = "push"
|
|
resolves = ["Push-build vue"]
|
|
}
|
|
|
|
action "Push-install dependencies" {
|
|
uses = "actions/npm@master"
|
|
args = "ci"
|
|
}
|
|
|
|
action "Push-build vue" {
|
|
uses = "actions/npm@master"
|
|
needs = ["Push-install dependencies"]
|
|
args = "run build"
|
|
}
|