chore(deps): endbug/add-and-commit action v11 #1476
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: Run Pull Request Checks | |
| on: [pull_request] | |
| jobs: | |
| tests: | |
| name: Run Tests | |
| runs-on: ubuntu-latest | |
| strategy: | |
| matrix: | |
| node-version: [22.x, 24.x, 26.x] | |
| steps: | |
| - uses: actions/checkout@v7 | |
| - uses: pnpm/action-setup@v6 | |
| with: | |
| version: 11 | |
| cache: true | |
| run_install: true | |
| - name: Use Node.js ${{ matrix.node-version }} | |
| uses: actions/setup-node@v7 | |
| with: | |
| node-version: ${{ matrix.node-version }} | |
| cache: pnpm | |
| - name: Compile | |
| run: pnpm build:code | |
| - name: Tests | |
| run: pnpm test | |
| lint_and_format: | |
| name: Run Lint and Format | |
| runs-on: ubuntu-latest | |
| steps: | |
| - uses: actions/checkout@v7 | |
| - uses: pnpm/action-setup@v6 | |
| with: | |
| version: 11 | |
| cache: true | |
| run_install: true | |
| - uses: actions/setup-node@v7 | |
| with: | |
| node-version: 24.x | |
| cache: pnpm | |
| - name: Linted | |
| run: pnpm lint | |
| - name: Nice | |
| run: pnpm prettier |