From 4fa292edb2b3faa38a7694a11e89d841ef1b7d64 Mon Sep 17 00:00:00 2001 From: Jonathan Clem Date: Tue, 21 May 2019 10:36:00 -0400 Subject: [PATCH] Add Lint action to main.workflow --- .github/main.workflow | 8 +++++++- 1 file changed, 7 insertions(+), 1 deletion(-) diff --git a/.github/main.workflow b/.github/main.workflow index cf141b0f..e2e869ba 100644 --- a/.github/main.workflow +++ b/.github/main.workflow @@ -1,6 +1,6 @@ workflow "CI" { on = "push" - resolves = ["Format", "Test"] + resolves = ["Format", "Lint", "Test"] } action "Dependencies" { @@ -26,6 +26,12 @@ action "Format" { args = "run format-check" } +action "Lint" { + needs = "Dependencies" + uses = "actions/npm@v2.0.0" + args = "run lint" +} + action "Test" { needs = "Compile" uses = "actions/npm@v2.0.0"