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