File tree Expand file tree Collapse file tree 2 files changed +6
-1
lines changed
packages/scope-manager/tests/eslint-scope Expand file tree Collapse file tree 2 files changed +6
-1
lines changed Original file line number Diff line number Diff line change 63
63
needs : [install]
64
64
runs-on : ubuntu-latest
65
65
strategy :
66
+ fail-fast : false
66
67
matrix :
67
68
lint-task : ['check-spelling', 'check-format', 'lint-markdown']
68
69
steps :
82
83
needs : [build]
83
84
runs-on : ubuntu-latest
84
85
strategy :
86
+ fail-fast : false
85
87
matrix :
86
88
lint-task : ['lint', 'typecheck']
87
89
steps :
@@ -121,6 +123,7 @@ jobs:
121
123
needs : [build]
122
124
runs-on : ubuntu-latest
123
125
strategy :
126
+ fail-fast : false
124
127
matrix :
125
128
# just run on the oldest and latest supported versions and assume the intermediate versions are good
126
129
# unfortunately you can't reference environment variables in an array :(
@@ -184,6 +187,7 @@ jobs:
184
187
needs : [build]
185
188
runs-on : ubuntu-latest
186
189
strategy :
190
+ fail-fast : false
187
191
matrix :
188
192
package :
189
193
# note that we don't regression test all packages here on purpose because most don't depend on TS directly.
@@ -236,6 +240,7 @@ jobs:
236
240
needs : [build]
237
241
runs-on : ubuntu-latest
238
242
strategy :
243
+ fail-fast : false
239
244
matrix :
240
245
package :
241
246
# note that we don't regression test all packages here on purpose because most don't depend on ESLint directly.
Original file line number Diff line number Diff line change @@ -544,7 +544,7 @@ describe('References:', () => {
544
544
) ;
545
545
} ) ;
546
546
547
- if ( semver . satisfies ( ts . version , '>=4' ) ) {
547
+ if ( semver . satisfies ( ts . version , '>=4.9 ' ) ) {
548
548
describe ( 'When emitDecoratorMetadata is true' , ( ) => {
549
549
it ( 'check type referenced by decorator metadata' , ( ) => {
550
550
const { scopeManager } = parseAndAnalyze (
You can’t perform that action at this time.
0 commit comments