We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent 01f2f01 commit 87d4263Copy full SHA for 87d4263
1 file changed
.github/workflows/integration-tests.yml
@@ -1,4 +1,4 @@
1
-name: Comprehensive Integration Tests
+name: Integration Tests
2
3
on:
4
push:
@@ -140,7 +140,11 @@ jobs:
140
- name: Run application management tests for ${{ matrix.test-suite }}
141
if: matrix.test-suite != 'apiTests'
142
run: |
143
- node --test integrationTests/applicationManagement/tests/${{ matrix.test-suite }}/*.test.mts
+ if [ "${{ matrix.node-version }}" == "20" ]; then
144
+ node --experimental-strip-types --test integrationTests/applicationManagement/tests/${{ matrix.test-suite }}/*.test.mts
145
+ else
146
+ node --test integrationTests/applicationManagement/tests/${{ matrix.test-suite }}/*.test.mts
147
+ fi
148
149
- name: Upload HarperDB logs
150
if: always()
0 commit comments