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"