Merge branch 'canary' into canary #1
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: Pin Dependencies Check | |
| on: | |
| push: | |
| branches: | |
| - main | |
| - canary | |
| pull_request: | |
| concurrency: | |
| group: ${{ github.workflow }}-${{ github.ref }} | |
| cancel-in-progress: true | |
| permissions: | |
| contents: read | |
| pull-requests: read | |
| jobs: | |
| pin-dependencies-check: | |
| runs-on: blacksmith-2vcpu-ubuntu-2204 | |
| container: | |
| image: node:22-slim | |
| steps: | |
| - name: Checkout Repo | |
| uses: actions/checkout@0c366fd6a839edf440554fa01a7085ccba70ac98 | |
| with: | |
| fetch-depth: 1 | |
| - name: pnpm setup | |
| uses: pnpm/action-setup@fc06bc1257f339d1d5d8b3a19a8cae5388b55320 | |
| - name: Install root dependencies only | |
| run: pnpm install --frozen-lockfile --filter . --ignore-scripts | |
| - name: Check for pinned dependencies | |
| run: pnpm exec tsx ./scripts/check-dependency-versions.ts |