Delete main.workflow

This commit is contained in:
Jan Böhmer 2019-08-27 17:48:55 +02:00 committed by GitHub
parent ad949d4d9b
commit 7f3b4031b1
No known key found for this signature in database
GPG key ID: 4AEE18F83AFDEB23

29
.github/main.workflow vendored
View file

@ -1,29 +0,0 @@
workflow "Build, Test, and Publish" {
on = "push"
resolves = [
"Install Composer dependencies",
"Build frontent code.",
"Install frontend depencies.",
]
}
action "Install frontend depencies." {
uses = "nuxt/actions-yarn@master"
args = "install"
}
action "Compile Assets" {
uses = "nuxt/actions-yarn@master"
args = "encore production"
}
action "Build frontent code." {
uses = "nuxt/actions-yarn@master"
args = "run build"
needs = ["Install frontend depencies."]
}
action "Install Composer dependencies" {
uses = "pxgamer/composer-action@master"
args = "install -a"
}