We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent e27b9ab commit d4cf51eCopy full SHA for d4cf51e
.github/workflows/tests.yml
@@ -186,13 +186,22 @@ jobs:
186
- name: Erase path aliases
187
run: sed -i -e /@remap-prod-remove-line/d ./tsconfig.base.json
188
189
- - name: Test types
+ - name: Test types (TS 5.x)
190
+ if: matrix.ts != 'next' && !startsWith(matrix.ts, '6.')
191
env:
192
TEST_DIST: true
193
run: |
194
yarn tsc --version
195
yarn type-tests
196
197
+ - name: Test types (TS 6.x/next)
198
+ if: matrix.ts == 'next' || startsWith(matrix.ts, '6.')
199
+ env:
200
+ TEST_DIST: true
201
+ run: |
202
+ yarn tsc --version
203
+ yarn tsc -p tsconfig.test.json --noEmit --ignoreDeprecations 6.0
204
+
205
test-published-artifact:
206
name: Test Published Artifact ${{ matrix.example }}
207
0 commit comments