chore(deps): bump the production-dependencies group across 1 directory with 2 updates #184
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: [develop] | |
| pull_request: | |
| branches: [develop] | |
| jobs: | |
| check: | |
| runs-on: ubuntu-latest | |
| strategy: | |
| matrix: | |
| node-version: [20, 22] | |
| steps: | |
| - uses: actions/checkout@v6 | |
| - uses: pnpm/action-setup@v6 | |
| - uses: actions/setup-node@v6 | |
| with: | |
| node-version: ${{ matrix.node-version }} | |
| cache: pnpm | |
| - run: pnpm install --frozen-lockfile | |
| - name: Quality | |
| run: pnpm quality:ci | |
| ci: | |
| name: CI | |
| runs-on: ubuntu-latest | |
| needs: check | |
| if: ${{ always() }} | |
| steps: | |
| - name: Verify Node matrix checks | |
| run: | | |
| if [ "${{ needs.check.result }}" != "success" ]; then | |
| echo "One or more Node matrix checks failed." | |
| exit 1 | |
| fi | |
| echo "All Node matrix checks passed." |