diff --git a/.github/main.workflow b/.github/main.workflow deleted file mode 100644 index b47c403..0000000 --- a/.github/main.workflow +++ /dev/null @@ -1,15 +0,0 @@ -workflow "Push" { - on = "push" - resolves = ["Push-build vue"] -} - -action "Push-install dependencies" { - uses = "actions/npm@master" - args = "ci" -} - -action "Push-build vue" { - uses = "actions/npm@master" - needs = ["Push-install dependencies"] - args = "run build" -}