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