Skip to content
This repository has been archived by the owner on Sep 5, 2023. It is now read-only.

Commit

Permalink
try testing with GH actions
Browse files Browse the repository at this point in the history
  • Loading branch information
mrkurt committed Mar 14, 2019
1 parent f3c77e6 commit 32a3961
Showing 1 changed file with 16 additions and 0 deletions.
16 changes: 16 additions & 0 deletions .github/main.workflow
@@ -0,0 +1,16 @@
workflow "Build, Test, and Publish" {
on = "push"
resolves = ["Test"]
}

action "Build" {
uses = "nuxt/actions-yarn@master"
args = "install"
}

action "Test" {
needs = "Build"
uses = "nuxt/actions-yarn@master"
args = "test"
needs = ["Build"]
}

0 comments on commit 32a3961

Please sign in to comment.