Bump @types/node from 25.5.2 to 25.6.0 (#896) #1072
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
| name: CI | |
| on: | |
| push: | |
| branches: [master] | |
| pull_request: | |
| branches: [master] | |
| jobs: | |
| build: | |
| runs-on: ${{ matrix.os }} | |
| strategy: | |
| matrix: | |
| os: [ubuntu-latest, macos-latest, windows-latest] | |
| node: [20, 22, 24] | |
| steps: | |
| - uses: actions/checkout@v5 | |
| - uses: pnpm/action-setup@v4 | |
| - uses: actions/setup-node@v6 | |
| with: | |
| node-version: ${{ matrix.node }} | |
| cache: pnpm | |
| cache-dependency-path: pnpm-lock.yaml | |
| - run: pnpm install && pnpm test -- --bail 1 | |
| - run: pnpm check | |
| - run: pnpm run build && npm publish --dry-run | |
| - uses: codecov/codecov-action@v4 | |
| if: matrix.os == 'ubuntu-latest' && matrix.node == 24 | |
| with: | |
| token: ${{ secrets.CODECOV_TOKEN }} | |
| - name: Set .npmrc for windows | |
| run: cp .npmrc.windows ./tests-browser/.npmrc | |
| if: matrix.os == 'windows-latest' | |
| - name: Set up browser tests | |
| working-directory: tests-browser | |
| run: pnpm install && pnpm exec playwright install chromium firefox | |
| - name: Install webkit browser on macos | |
| working-directory: tests-browser | |
| run: pnpm exec playwright install | |
| if: matrix.os == 'macos-latest' | |
| - name: Run browser tests (chromium) | |
| run: pnpm test:browser --browser=chromium | |
| - name: Run browser tests (firefox) | |
| run: pnpm test:browser --browser=firefox | |
| - name: Run browser tests (webkit) | |
| run: pnpm test:browser --browser=webkit | |
| if: matrix.os == 'macos-latest' | |
| check-runtimes: | |
| runs-on: ubuntu-latest | |
| steps: | |
| - uses: actions/checkout@v5 | |
| - uses: pnpm/action-setup@v4 | |
| - uses: actions/setup-node@v6 | |
| with: | |
| node-version: 24 | |
| cache: pnpm | |
| cache-dependency-path: pnpm-lock.yaml | |
| - uses: oven-sh/setup-bun@v2 | |
| with: | |
| bun-version: latest | |
| - uses: denoland/setup-deno@v2 | |
| with: | |
| deno-version: v2.x | |
| - run: pnpm install && pnpm build && cd example/runtime && pnpm install | |
| - run: deno task test | |
| - run: bun test | |
| - name: check main.js | |
| run: | | |
| ./scripts/check-runtime.sh example/runtime/main.js | |
| - name: check import.js | |
| run: | | |
| ./scripts/check-runtime.sh example/runtime/import.js | |
| - name: check require.cjs | |
| run: | | |
| ./scripts/check-runtime.sh example/runtime/require.cjs |