diff --git a/.github/main.workflow b/.github/main.workflow new file mode 100644 index 0000000..3735771 --- /dev/null +++ b/.github/main.workflow @@ -0,0 +1,16 @@ +workflow "Build, Test, and Publish" { + on = "push" + resolves = ["Test"] +} + +action "Build" { + uses = "nuxt/actions-yarn@master" + args = "install" +} + +action "Test" { + needs = "Build" + uses = "nuxt/actions-yarn@master" + args = "test" + needs = ["Build"] +}