File tree Expand file tree Collapse file tree 1 file changed +8
-0
lines changed Expand file tree Collapse file tree 1 file changed +8
-0
lines changed Original file line number Diff line number Diff line change @@ -119,6 +119,10 @@ jobs:
119
119
120
120
system-tests :
121
121
name : System tests
122
+ # run integration tests on all builds except pull requests from forks or dependabot
123
+ if : |
124
+ github.event_name != 'pull_request' ||
125
+ (github.event.pull_request.head.repo.full_name == github.repository && github.actor != 'dependabot[bot]')
122
126
strategy :
123
127
matrix :
124
128
node-version : [v14.x, v16.x, v20.x]
@@ -265,6 +269,10 @@ jobs:
265
269
266
270
sample-tests :
267
271
name : Sample tests
272
+ # run sample tests on all builds except pull requests from forks or dependabot
273
+ if : |
274
+ github.event_name != 'pull_request' ||
275
+ (github.event.pull_request.head.repo.full_name == github.repository && github.actor != 'dependabot[bot]')
268
276
permissions :
269
277
contents : read
270
278
id-token : write
You can’t perform that action at this time.
0 commit comments