We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent f19aec9 commit 39d07f1Copy full SHA for 39d07f1
1 file changed
.github/workflows/ci.yml
@@ -113,7 +113,9 @@ jobs:
113
node-version: 22
114
115
- name: Verify all dynamic imports resolve
116
- run: node --experimental-strip-types scripts/verify-imports.ts
+ run: |
117
+ STRIP_FLAG=$(node -e "const [M]=process.versions.node.split('.').map(Number); console.log(M>=23?'--strip-types':'--experimental-strip-types')")
118
+ node $STRIP_FLAG scripts/verify-imports.ts
119
120
rust-check:
121
runs-on: ubuntu-latest
0 commit comments