chore(deps-dev): bump @types/node from 24.13.3 to 26.4.0 #11
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: | |
| branches: [main] | |
| pull_request: | |
| workflow_dispatch: | |
| permissions: | |
| contents: read | |
| jobs: | |
| verify: | |
| name: DSH 0.1.1-rc.2 / Node 22.19 / pnpm 11.21 | |
| runs-on: ubuntu-latest | |
| timeout-minutes: 15 | |
| steps: | |
| - name: Check out repository | |
| uses: actions/checkout@3d3c42e5aac5ba805825da76410c181273ba90b1 # v7.0.1 | |
| with: | |
| persist-credentials: false | |
| - name: Install pnpm | |
| uses: pnpm/action-setup@b906affcce14559ad1aafd4ab0e942779e9f58b1 # v4 | |
| with: | |
| version: 11.21.0 | |
| run_install: false | |
| - name: Install Node.js | |
| uses: actions/setup-node@820762786026740c76f36085b0efc47a31fe5020 # v7.0.0 | |
| with: | |
| node-version: 22.19.0 | |
| cache: pnpm | |
| - name: Install locked dependencies | |
| run: pnpm install --frozen-lockfile | |
| - name: Assert a uniform DSH dependency graph | |
| run: node scripts/assert-dsh-test-version.mjs 0.1.1-rc.2 | |
| - name: Verify source, checked-in artifacts, behavior, compatibility, and package | |
| run: pnpm verify | |
| - name: Confirm the DSH graph remained uniform | |
| run: node scripts/assert-dsh-test-version.mjs 0.1.1-rc.2 | |
| - name: Preview package contents | |
| run: pnpm pack --dry-run |