Created
August 5, 2019 17:46
-
-
Save gauravchl/6d86103d6071ec63e676bdc678543198 to your computer and use it in GitHub Desktop.
For medium
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
workflow "Build and Test" { | |
on = "push" | |
resolves = ["Run integration tests"] | |
} | |
action "Install dependencies" { | |
uses = "actions/npm@master" | |
runs = "npm install" | |
} | |
action "Build app" { | |
uses = "actions/npm@master" | |
needs = "Install dependencies" | |
runs = "npm run build" | |
} | |
action "Run integration tests" { | |
uses = "docker://circleci/node:8-browsers" | |
needs = "Build app" | |
runs = "npm run e2e:github" | |
} |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment