Skip to content

Instantly share code, notes, and snippets.

@gauravchl
Created August 5, 2019 17:46
Show Gist options
  • Save gauravchl/6d86103d6071ec63e676bdc678543198 to your computer and use it in GitHub Desktop.
Save gauravchl/6d86103d6071ec63e676bdc678543198 to your computer and use it in GitHub Desktop.
For medium
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