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 b60a628 commit aae1452Copy full SHA for aae1452
1 file changed
.github/workflows/ci.yml
@@ -205,10 +205,6 @@ jobs:
205
npm test
206
fi
207
208
- - name: Run type tests
209
- if: steps.list_env.outputs.typescript != ''
210
- run: npm run test-types
211
-
212
- name: Lint code
213
if: steps.list_env.outputs.eslint != ''
214
run: npm run lint
@@ -232,3 +228,19 @@ jobs:
232
228
with:
233
229
github-token: ${{ secrets.GITHUB_TOKEN }}
234
230
parallel-finished: true
231
+
+ test_typescript:
+ runs-on: 'ubuntu-latest'
+ steps:
235
+ - uses: actions/checkout@v6
236
+ with:
237
+ persist-credentials: false
238
239
+ - uses: actions/setup-node@v6
240
241
+ - name: Install
242
+ run: |
243
+ npm install --ignore-scripts
244
245
+ - name: Run typescript tests
246
+ run: npm run test-types
0 commit comments