Skip to content

Commit

Permalink
fix issue with conditional include
Browse files Browse the repository at this point in the history
- @google-cloud/dlp should only be included if necessary
  • Loading branch information
Torgny Bjers committed May 15, 2019
1 parent 10f3b1c commit 8a46573
Show file tree
Hide file tree
Showing 4 changed files with 287 additions and 142 deletions.
11 changes: 3 additions & 8 deletions .github/main.workflow
Original file line number Diff line number Diff line change
Expand Up @@ -4,18 +4,13 @@ workflow "Verify the module" {
}

action "install" {
uses = "actions/npm@master"
uses = "actions/npm@1.0.0"
args = "ci"
}

action "peer_install" {
uses = "actions/npm@master"
args = "install --no-save @google-cloud/dlp"
}

action "verify_all" {
needs = "peer_install"
uses = "actions/npm@master"
needs = "install"
uses = "actions/npm@1.0.0"
args = "run verify_all"
}

Expand Down
Loading

0 comments on commit 8a46573

Please sign in to comment.