diff --git a/.github/workflows/ci.yml b/.github/workflows/ci.yml index 6e75775a8..f1f1fba51 100644 --- a/.github/workflows/ci.yml +++ b/.github/workflows/ci.yml @@ -19,6 +19,12 @@ jobs: cache: 'npm' cache-dependency-path: 'package.json' + # The new type stripping breaks our existing ts-node testing + # set up, so disable it: + - name: Set Node Options for Node 23 + if: startsWith(matrix.node-version, '23') + run: echo "NODE_OPTIONS=--no-experimental-strip-types" >> $GITHUB_ENV + - run: npm install - run: npm run ci-tests