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