Delete main.workflow

This commit is contained in:
Hunter 2019-09-10 22:01:00 -04:00 committed by GitHub
parent 66f126195d
commit f2a3129815
No known key found for this signature in database
GPG key ID: 4AEE18F83AFDEB23

15
.github/main.workflow vendored
View file

@ -1,15 +0,0 @@
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"
}