This repository was archived by the owner on Sep 5, 2025. It is now read-only.
chore(deps): update nextjs monorepo to v15.5.2 #2736
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: 'coverage' | |
| on: | |
| pull_request: | |
| branches: | |
| - main | |
| jobs: | |
| check: | |
| name: check | |
| runs-on: ubuntu-latest | |
| steps: | |
| - uses: actions/checkout@v5 | |
| - name: yarn | |
| run: yarn | |
| - name: Run eslint for library | |
| run: yarn lint:lib:eslint | |
| # Skip until the following is corrected. | |
| # https://github.com/facebookexperimental/Recoil/issues/1902 | |
| # - name: Run type check for library | |
| # run: yarn lint:lib:tsc | |
| - name: Run eslint for examples | |
| run: yarn lint:ex:eslint | |
| - name: Run jest | |
| run: yarn test |