Support the last two Next/React majors in peer deps (#507) #1426
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: Cypress Tests | |
| on: | |
| push: | |
| pull_request: | |
| jobs: | |
| cypress: | |
| runs-on: ubuntu-latest | |
| steps: | |
| - name: Checkout | |
| uses: actions/checkout@v3 | |
| - name: Use Node.js 18.x | |
| uses: actions/setup-node@v3 | |
| with: | |
| node-version: 18 | |
| cache: "yarn" | |
| - name: Install dependencies | |
| run: yarn | |
| - name: Build the app | |
| run: yarn build | |
| - name: Cypress run | |
| uses: cypress-io/github-action@v6 | |
| env: | |
| DEBUG: "@cypress/github-action" | |
| with: | |
| install: false | |
| start: yarn ci:server:nohup | |
| working-directory: packages/cli | |
| browser: chrome |