chore: Bump the "dependencies" group with 3 updates across multiple ecosystems #90
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: π Code quality | |
| on: | |
| pull_request: | |
| permissions: | |
| contents: read | |
| jobs: | |
| quality: | |
| runs-on: ubuntu-latest | |
| timeout-minutes: 5 | |
| steps: | |
| - name: Checkout repository β¬οΈ | |
| uses: actions/checkout@9c091bb21b7c1c1d1991bb908d89e4e9dddfe3e0 # v7.0.0 | |
| with: | |
| persist-credentials: false | |
| - name: Set up pnpm | |
| uses: pnpm/action-setup@0ebf47130e4866e96fce0953f49152a61190b271 # v6.0.9 | |
| - name: Use Node.js 25.x βοΈ | |
| uses: actions/setup-node@48b55a011bda9f5d6aeb4c2d9c7362e8dae4041e # v6.4.0 | |
| with: | |
| node-version: 25.x | |
| cache: "pnpm" | |
| - name: Install dependencies π¦ | |
| run: pnpm install --frozen-lockfile | |
| - name: Check code quality π | |
| run: node --run lint | |
| - name: Check code formatting π¨ | |
| run: node --run format:check | |
| - name: Check types π§© | |
| run: node --run types:check | |
| - name: Check build ποΈ | |
| run: node --run build |