File tree 1 file changed +12
-2
lines changed
1 file changed +12
-2
lines changed Original file line number Diff line number Diff line change 5
5
- ' cherry-pick/**'
6
6
pull_request :
7
7
8
+ concurrency :
9
+ # group by workflow and ref; the last slightly strange component ensures that for pull
10
+ # requests, we limit to 1 concurrent job, but for the master branch we don't
11
+ group : ${{github.workflow}}-${{github.ref}}-${{github.ref != 'refs/heads/master' || github.run_number}}
12
+ # Cancel intermediate builds, but only if it is a pull request build.
13
+ cancel-in-progress : ${{startsWith(github.ref, 'refs/pull/')}}
14
+
8
15
name : ' Integration'
9
16
jobs :
10
17
chore :
@@ -184,12 +191,15 @@ jobs:
184
191
matrix :
185
192
node :
186
193
- 14
187
- - 16
188
- - 17
189
194
platform :
190
195
- ubuntu-latest
191
196
- windows-latest
192
197
- macos-latest
198
+ include :
199
+ - node : 16
200
+ platform : ubuntu-latest
201
+ - node : 17
202
+ platform : ubuntu-latest
193
203
194
204
name : ' ${{matrix.platform}} w/ Node.js ${{matrix.node}}.x'
195
205
runs-on : ${{matrix.platform}}
You can’t perform that action at this time.
0 commit comments