File tree Expand file tree Collapse file tree
Expand file tree Collapse file tree Original file line number Diff line number Diff 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()
You can’t perform that action at this time.
0 commit comments