chore(deps): bump the major-deps-updates-main group across 1 directory with 5 updates #355
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: Build & Test | |
| on: | |
| push: | |
| branches: | |
| - "main" | |
| pull_request: | |
| branches: | |
| - "**" | |
| jobs: | |
| quality: | |
| name: π Lint & Format | |
| runs-on: ubuntu-latest | |
| steps: | |
| - name: π₯ Checkout Code | |
| uses: actions/checkout@9c091bb21b7c1c1d1991bb908d89e4e9dddfe3e0 # v7.0.0 | |
| - name: π’ Setup pnpm | |
| uses: pnpm/action-setup@0ebf47130e4866e96fce0953f49152a61190b271 # v6.0.9 | |
| - name: π’ Setup Node 22 | |
| uses: actions/setup-node@48b55a011bda9f5d6aeb4c2d9c7362e8dae4041e # v6.4.0 | |
| with: | |
| node-version: 22 | |
| cache: "pnpm" | |
| - name: π¦ Install Dependencies | |
| run: pnpm install --frozen-lockfile | |
| - name: π Lint | |
| run: pnpm run lint | |
| - name: π¨ Format | |
| run: pnpm run format:check | |
| build_and_test: | |
| strategy: | |
| matrix: | |
| node: [22, 24] | |
| os: ["ubuntu-latest", "windows-latest"] | |
| name: Node ${{ matrix.node }} on ${{ matrix.os }} | |
| runs-on: ${{ matrix.os }} | |
| steps: | |
| - name: π₯ Checkout Code | |
| uses: actions/checkout@9c091bb21b7c1c1d1991bb908d89e4e9dddfe3e0 # v7.0.0 | |
| - name: π’ Setup pnpm | |
| uses: pnpm/action-setup@0ebf47130e4866e96fce0953f49152a61190b271 # v6.0.9 | |
| - name: π’ Setup Node ${{ matrix.node }} | |
| uses: actions/setup-node@48b55a011bda9f5d6aeb4c2d9c7362e8dae4041e # v6.4.0 | |
| with: | |
| node-version: ${{ matrix.node }} | |
| cache: "pnpm" | |
| - name: π¦ Install Dependencies | |
| run: pnpm install --frozen-lockfile | |
| - name: ποΈ Build | |
| run: pnpm run build | |
| - name: π§ͺ Test | |
| run: pnpm run test |