From 07e39ed13702d0fb17c78df823ed965df7da9580 Mon Sep 17 00:00:00 2001 From: Danny McCormick Date: Wed, 5 Jun 2019 15:40:17 -0400 Subject: [PATCH] Test doesnt depend on build --- .github/main.workflow | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/.github/main.workflow b/.github/main.workflow index 17cabd00..08c231cc 100644 --- a/.github/main.workflow +++ b/.github/main.workflow @@ -1,6 +1,6 @@ workflow "CI" { on = "push" - resolves = ["Format", "Test"] + resolves = ["Format", "Build", "Test"] } action "Dependencies" { @@ -21,7 +21,7 @@ action "Format" { } action "Test" { - needs = "Build" + needs = "Dependencies" uses = "actions/npm@v2.0.0" args = "test" } \ No newline at end of file