chore(deps): update dependency @types/node to v25.6.0 #1618
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: | |
| pull_request: | |
| types: | |
| - opened | |
| - synchronize | |
| - reopened | |
| push: | |
| branches: | |
| - main | |
| permissions: | |
| # To fetch code (actions/checkout) | |
| contents: read | |
| jobs: | |
| build: | |
| concurrency: | |
| group: ${{ github.workflow }}-${{ github.ref }}-${{ matrix.node-version }} | |
| cancel-in-progress: true | |
| runs-on: ubuntu-latest | |
| strategy: | |
| matrix: | |
| # See supported Node.js release schedule at | |
| # https://nodejs.org/en/about/previous-releases | |
| node-version: [lts] | |
| steps: | |
| - uses: actions/checkout@v6 | |
| with: | |
| persist-credentials: false | |
| - uses: voidzero-dev/setup-vp@v1 | |
| with: | |
| node-version: ${{ matrix.node-version }} | |
| cache: true | |
| - name: Install dependencies | |
| run: vp install | |
| - name: Build | |
| run: vp run -r build | |
| - name: Check | |
| run: vp check | |
| - name: Test | |
| run: vp test | |
| - name: Test types | |
| run: vp run test:attw |