Bump @types/node from 26.1.0 to 26.1.1 #604
Workflow file for this run
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: | |
| pull_request: | |
| jobs: | |
| lint: | |
| name: Lint | |
| runs-on: ubuntu-latest | |
| steps: | |
| - name: Checkout repository | |
| uses: actions/checkout@v6 | |
| - name: Set up workspace | |
| uses: ./.github/actions/setup | |
| - name: Run linter | |
| run: npm run lint | |
| build-guides: | |
| name: Build guides | |
| runs-on: ubuntu-latest | |
| steps: | |
| - name: Checkout repository | |
| uses: actions/checkout@v6 | |
| - name: Set up workspace | |
| uses: ./.github/actions/setup | |
| - name: Build guides | |
| run: npm run guides | |
| test-integration: | |
| name: Test integration | |
| runs-on: ubuntu-latest | |
| steps: | |
| - name: Checkout repository | |
| uses: actions/checkout@v6 | |
| - name: Set up workspace | |
| uses: ./.github/actions/setup | |
| with: | |
| # Use the latest Node.js version for TypeScript support. | |
| node-version: 23 | |
| - name: Install browsers | |
| run: npx playwright install --with-deps | |
| - name: Run integration tests | |
| run: npm test | |
| working-directory: test |