From d78ededdcb4f5734ea539efb97fbc2dbd329069d Mon Sep 17 00:00:00 2001 From: Danny McCormick Date: Thu, 11 Jul 2019 16:14:02 -0400 Subject: [PATCH] Remove legacy workflow --- .github/main.workflow | 39 --------------------------------------- 1 file changed, 39 deletions(-) delete mode 100644 .github/main.workflow diff --git a/.github/main.workflow b/.github/main.workflow deleted file mode 100644 index e2e869ba..00000000 --- a/.github/main.workflow +++ /dev/null @@ -1,39 +0,0 @@ -workflow "CI" { - on = "push" - resolves = ["Format", "Lint", "Test"] -} - -action "Dependencies" { - uses = "actions/npm@v2.0.0" - args = "ci" -} - -action "Bootstrap" { - needs = "Dependencies" - uses = "actions/npm@v2.0.0" - args = "run bootstrap" -} - -action "Compile" { - needs = "Bootstrap" - uses = "actions/npm@v2.0.0" - args = "run build" -} - -action "Format" { - needs = "Dependencies" - uses = "actions/npm@v2.0.0" - 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" - args = "test" -} \ No newline at end of file