Thanks to visit codestin.com
Credit goes to github.com

Skip to content

Commit f6de3ff

Browse files
fail-fast: false, and a small version fix
1 parent 3b2311c commit f6de3ff

File tree

2 files changed

+6
-1
lines changed

2 files changed

+6
-1
lines changed

.github/workflows/ci.yml

Lines changed: 5 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -63,6 +63,7 @@ jobs:
6363
needs: [install]
6464
runs-on: ubuntu-latest
6565
strategy:
66+
fail-fast: false
6667
matrix:
6768
lint-task: ['check-spelling', 'check-format', 'lint-markdown']
6869
steps:
@@ -82,6 +83,7 @@ jobs:
8283
needs: [build]
8384
runs-on: ubuntu-latest
8485
strategy:
86+
fail-fast: false
8587
matrix:
8688
lint-task: ['lint', 'typecheck']
8789
steps:
@@ -121,6 +123,7 @@ jobs:
121123
needs: [build]
122124
runs-on: ubuntu-latest
123125
strategy:
126+
fail-fast: false
124127
matrix:
125128
# just run on the oldest and latest supported versions and assume the intermediate versions are good
126129
# unfortunately you can't reference environment variables in an array :(
@@ -184,6 +187,7 @@ jobs:
184187
needs: [build]
185188
runs-on: ubuntu-latest
186189
strategy:
190+
fail-fast: false
187191
matrix:
188192
package:
189193
# 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:
236240
needs: [build]
237241
runs-on: ubuntu-latest
238242
strategy:
243+
fail-fast: false
239244
matrix:
240245
package:
241246
# note that we don't regression test all packages here on purpose because most don't depend on ESLint directly.

packages/scope-manager/tests/eslint-scope/references.test.ts

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -544,7 +544,7 @@ describe('References:', () => {
544544
);
545545
});
546546

547-
if (semver.satisfies(ts.version, '>=4')) {
547+
if (semver.satisfies(ts.version, '>=4.9')) {
548548
describe('When emitDecoratorMetadata is true', () => {
549549
it('check type referenced by decorator metadata', () => {
550550
const { scopeManager } = parseAndAnalyze(

0 commit comments

Comments
 (0)