This repository was archived by the owner on Jun 16, 2026. It is now read-only.
Update nextjs monorepo to v13.5.11 #1525
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 | |
| on: [push] | |
| jobs: | |
| build: | |
| runs-on: ubuntu-latest | |
| steps: | |
| - uses: actions/checkout@v3 | |
| - uses: actions/setup-node@v3 | |
| with: | |
| node-version: "22.19.0" | |
| cache: "yarn" | |
| - run: "yarn install" | |
| - run: "yarn analyze" | |
| test: | |
| needs: build | |
| runs-on: ubuntu-latest | |
| steps: | |
| - uses: actions/checkout@v3 | |
| - uses: actions/setup-node@v3 | |
| with: | |
| node-version: "22.19.0" | |
| cache: "yarn" | |
| - run: "yarn install" | |
| - run: "yarn test" | |
| test_acceptance: | |
| needs: build | |
| runs-on: ubuntu-latest | |
| steps: | |
| - uses: actions/checkout@v3 | |
| - uses: actions/setup-node@v3 | |
| with: | |
| node-version: "22.19.0" | |
| cache: "yarn" | |
| - run: "yarn install" | |
| - uses: cypress-io/github-action@v2 | |
| with: | |
| command: "yarn ci:test:acc" |