Update main.workflow

This commit is contained in:
Jan Böhmer 2019-03-25 16:58:06 +01:00 committed by GitHub
parent 0db44d55da
commit f87da53fb5
No known key found for this signature in database
GPG key ID: 4AEE18F83AFDEB23

14
.github/main.workflow vendored Normal file
View file

@ -0,0 +1,14 @@
workflow "Build, Test, and Publish" {
on = "push"
resolves = ["Build"]
}
action "Build" {
uses = "nuxt/actions-yarn@master"
args = "install"
}
action "Compile Assets" {
uses = "nuxt/actions-yarn@master"
args = "encore production"
}