Skip to content

Commit ed98569

Browse files
committed
chore: conditionally disable typescript stripping
1 parent 7f20862 commit ed98569

File tree

1 file changed

+6
-0
lines changed

1 file changed

+6
-0
lines changed

Diff for: .github/workflows/ci.yml

+6
Original file line numberDiff line numberDiff line change
@@ -39,3 +39,9 @@ jobs:
3939
node-version: ${{ matrix.node-version }}
4040
- run: npm ci
4141
- run: npm run test
42+
if: matrix.node-version != 'latest'
43+
# TODO (43081j): remove the following once there's some way to
44+
# tell node not to try run typescript sources in a way that doesn't
45+
# break <23 node
46+
- run: npm run test -- --no-experimental-strip-types
47+
if: matrix.node-version == 'latest'

0 commit comments

Comments
 (0)