diff --git a/.github/main.workflow b/.github/main.workflow new file mode 100644 index 00000000..e5897ea2 --- /dev/null +++ b/.github/main.workflow @@ -0,0 +1,15 @@ +workflow "CI" { + on = "push" + resolves = "Test" +} + +action "Dependencies" { + uses = "actions/npm@v2.0.0" + args = "ci" +} + +action "Test" { + needs = "Dependencies" + uses = "actions/npm@v2.0.0" + args = "test" +} \ No newline at end of file