From a6a7c986c6ba70147fe347c90aa8c3e1f13b7f06 Mon Sep 17 00:00:00 2001 From: chee Date: Tue, 19 Feb 2019 23:48:37 +0000 Subject: [PATCH] Update main.workflow --- .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 0000000..d59c613 --- /dev/null +++ b/.github/main.workflow @@ -0,0 +1,15 @@ +workflow "New workflow" { + on = "push" + resolves = ["Run tests"] +} + +action "Install dependencies" { + uses = "actions/npm@59b64a598378f31e49cb76f27d6f3312b582f680" + args = "install" +} + +action "Run tests" { + uses = "actions/npm@59b64a598378f31e49cb76f27d6f3312b582f680" + args = "test" + needs = ["Install dependencies"] +}