From f87da53fb5497609f5ef9f92470931bf0a466793 Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Jan=20B=C3=B6hmer?= Date: Mon, 25 Mar 2019 16:58:06 +0100 Subject: [PATCH] Update main.workflow --- .github/main.workflow | 14 ++++++++++++++ 1 file changed, 14 insertions(+) create mode 100644 .github/main.workflow 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" +}