Skip to content

Commit 87d4263

Browse files
fix name and node 20 ts support
1 parent 01f2f01 commit 87d4263

1 file changed

Lines changed: 6 additions & 2 deletions

File tree

.github/workflows/integration-tests.yml

Lines changed: 6 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -1,4 +1,4 @@
1-
name: Comprehensive Integration Tests
1+
name: Integration Tests
22

33
on:
44
push:
@@ -140,7 +140,11 @@ jobs:
140140
- name: Run application management tests for ${{ matrix.test-suite }}
141141
if: matrix.test-suite != 'apiTests'
142142
run: |
143-
node --test integrationTests/applicationManagement/tests/${{ matrix.test-suite }}/*.test.mts
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
144148
145149
- name: Upload HarperDB logs
146150
if: always()

0 commit comments

Comments
 (0)