Skip to content

Commit

Permalink
Soften CI coverage (#4286)
Browse files Browse the repository at this point in the history
* Update integration-workflow.yml

* Update integration-workflow.yml
  • Loading branch information
arcanis authored Mar 29, 2022
1 parent 0294528 commit 323ea57
Showing 1 changed file with 12 additions and 2 deletions.
14 changes: 12 additions & 2 deletions .github/workflows/integration-workflow.yml
Original file line number Diff line number Diff line change
Expand Up @@ -5,6 +5,13 @@ on:
- 'cherry-pick/**'
pull_request:

concurrency:
# group by workflow and ref; the last slightly strange component ensures that for pull
# requests, we limit to 1 concurrent job, but for the master branch we don't
group: ${{github.workflow}}-${{github.ref}}-${{github.ref != 'refs/heads/master' || github.run_number}}
# Cancel intermediate builds, but only if it is a pull request build.
cancel-in-progress: ${{startsWith(github.ref, 'refs/pull/')}}

name: 'Integration'
jobs:
chore:
Expand Down Expand Up @@ -184,12 +191,15 @@ jobs:
matrix:
node:
- 14
- 16
- 17
platform:
- ubuntu-latest
- windows-latest
- macos-latest
include:
- node: 16
platform: ubuntu-latest
- node: 17
platform: ubuntu-latest

name: '${{matrix.platform}} w/ Node.js ${{matrix.node}}.x'
runs-on: ${{matrix.platform}}
Expand Down

0 comments on commit 323ea57

Please sign in to comment.