Skip to content

Commit 9291f17

Browse files
node 20 doesnt have type stripping whoops
1 parent 87d4263 commit 9291f17

1 file changed

Lines changed: 3 additions & 6 deletions

File tree

.github/workflows/integration-tests.yml

Lines changed: 3 additions & 6 deletions
Original file line numberDiff line numberDiff line change
@@ -138,13 +138,10 @@ jobs:
138138
run: npm run test:integration:api-tests
139139

140140
- name: Run application management tests for ${{ matrix.test-suite }}
141-
if: matrix.test-suite != 'apiTests'
141+
# Skip Node.js 20 for application management tests due to type stripping support
142+
if: matrix.test-suite != 'apiTests' && matrix.node-version != 20
142143
run: |
143-
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
144+
node --test integrationTests/applicationManagement/tests/${{ matrix.test-suite }}/*.test.mts
148145
149146
- name: Upload HarperDB logs
150147
if: always()

0 commit comments

Comments
 (0)