From 37e19115be63612a394e688d21b66c0058379846 Mon Sep 17 00:00:00 2001 From: Jonathan Clem Date: Fri, 19 Apr 2019 15:23:03 -0400 Subject: [PATCH] Add a workflow for running tests --- .github/main.workflow | 15 +++++++++++++++ 1 file changed, 15 insertions(+) create mode 100644 .github/main.workflow 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