Bump next from 16.2.1 to 16.2.2 in the all-minor-patch group #3128
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: test | |
| env: | |
| NODE_NO_WARNINGS: true | |
| NODE_OPTIONS: '--max-old-space-size=8192' | |
| CI: true | |
| on: | |
| push: | |
| branches: | |
| - master | |
| pull_request: | |
| branches: | |
| - master | |
| concurrency: | |
| group: ${{ github.workflow }}-${{ github.ref }} | |
| cancel-in-progress: true | |
| jobs: | |
| prettier-check: | |
| name: prettier | |
| runs-on: ubuntu-latest | |
| steps: | |
| - name: Checkout Master | |
| uses: actions/checkout@de0fac2e4500dabe0009e67214ff5f5447ce83dd # v6 | |
| - name: Setup env | |
| uses: the-guild-org/shared-config/setup@efca92ebf0309a89e2e1bb69b1f52115ff8ee7d6 # main | |
| with: | |
| nodeVersion: 25 | |
| - name: Prettier Check | |
| run: yarn prettier:check | |
| lint: | |
| name: lint | |
| uses: the-guild-org/shared-config/.github/workflows/lint.yml@efca92ebf0309a89e2e1bb69b1f52115ff8ee7d6 # main | |
| with: | |
| script: yarn ci:lint | |
| secrets: | |
| githubToken: ${{ secrets.GITHUB_TOKEN }} | |
| unit: | |
| name: unit | |
| runs-on: ubuntu-latest | |
| steps: | |
| - name: Checkout Master | |
| uses: actions/checkout@de0fac2e4500dabe0009e67214ff5f5447ce83dd # v6 | |
| - name: Setup Ruby | |
| uses: ruby/setup-ruby@v1 | |
| with: | |
| ruby-version: 2.7.8 | |
| - name: Setup env | |
| uses: the-guild-org/shared-config/setup@efca92ebf0309a89e2e1bb69b1f52115ff8ee7d6 # main | |
| with: | |
| nodeVersion: 25 | |
| - name: Cache Jest | |
| uses: actions/cache@668228422ae6a00e4ad889ee87cd7109ec5666a7 # v5 | |
| with: | |
| path: .cache/jest | |
| key: ${{ runner.os }}-jest-${{ hashFiles('yarn.lock') }} | |
| restore-keys: | | |
| ${{ runner.os }}-jest- | |
| - name: Unit Tests | |
| uses: nick-fields/retry@ad984534de44a9489a53aefd81eb77f87c70dc60 # v4 | |
| with: | |
| timeout_minutes: 10 | |
| max_attempts: 5 | |
| command: yarn test --ci |