chore(deps-dev): bump @types/node from 26.1.2 to 26.2.0 in the node group #734
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: Node.js CI | |
| on: | |
| pull_request: | |
| branches: [ master ] | |
| jobs: | |
| build: | |
| runs-on: ubuntu-latest | |
| strategy: | |
| matrix: | |
| node-version: [24.x, 26.x] | |
| steps: | |
| - uses: actions/checkout@v7 | |
| - name: Use Node.js ${{ matrix.node-version }} | |
| uses: actions/setup-node@v7 | |
| with: | |
| node-version: ${{ matrix.node-version }} | |
| cache: npm | |
| - run: npm ci | |
| - run: npm run audit | |
| - run: npm run lint:suppressions | |
| - run: npm run typecheck | |
| - run: npm run depcheck | |
| - run: npm test | |
| - name: Build VitePress docs site | |
| run: npm run docs:site | |
| - name: Validate published package surface (publint + attw + pack-smoke) | |
| run: npm run test:package |