From 73436331010a227e14138ac5cc6cc34605f0b8f4 Mon Sep 17 00:00:00 2001 From: Jonathan Clem Date: Sat, 20 Apr 2019 11:01:43 -0400 Subject: [PATCH] Fix Compile/Dependencies needs in main.workflow --- .github/main.workflow | 3 ++- 1 file changed, 2 insertions(+), 1 deletion(-) diff --git a/.github/main.workflow b/.github/main.workflow index be722e6e..af2ce4fc 100644 --- a/.github/main.workflow +++ b/.github/main.workflow @@ -9,8 +9,9 @@ action "Dependencies" { } action "Compile" { + needs = "Dependencies" uses = "actions/npm@v2.0.0" - run = "run build" + args = "run build" } action "Format" {