diff --git a/.github/main.workflow b/.github/main.workflow new file mode 100644 index 00000000..2d66ae6c --- /dev/null +++ b/.github/main.workflow @@ -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" +}