fix: add mext in root for vercel #2689
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: Cypress | |
| on: [push] | |
| jobs: | |
| chrome: | |
| runs-on: ubuntu-latest | |
| container: | |
| # Find new tag here -> https://hub.docker.com/r/cypress/browsers/tags | |
| image: cypress/browsers:node-22.17.1-chrome-138.0.7204.157-1-ff-140.0.4-edge-138.0.3351.83-1 | |
| options: --user 1001 | |
| steps: | |
| - uses: actions/checkout@v4 | |
| - uses: pnpm/action-setup@v4 | |
| - run: pnpm install --frozen-lockfile | |
| - run: pnpm cypress info | |
| - run: node --version | |
| - run: node -p 'os.cpus()' | |
| - run: pnpm cy:test:chrome | |
| edge: | |
| runs-on: ubuntu-latest | |
| container: | |
| # Find new tag here -> https://hub.docker.com/r/cypress/browsers/tags | |
| image: cypress/browsers:node-22.17.1-chrome-138.0.7204.157-1-ff-140.0.4-edge-138.0.3351.83-1 | |
| options: --user 1001 | |
| steps: | |
| - uses: actions/checkout@v4 | |
| - uses: pnpm/action-setup@v4 | |
| - run: pnpm install --frozen-lockfile | |
| - run: pnpm cypress info | |
| - run: node --version | |
| - run: node -p 'os.cpus()' | |
| - run: pnpm cy:test:edge | |
| # chrome: | |
| # runs-on: ubuntu-latest | |
| # container: | |
| # image: cypress/browsers:node16.14.2-slim-chrome100-ff99-edge | |
| # options: --user 1001 # very important otherwise there is a permission error | |
| # needs: install | |
| # strategy: | |
| # # when one test fails, DO NOT cancel the other | |
| # # containers, because this will kill Cypress processes | |
| # # leaving the Dashboard hanging ... | |
| # # https://github.com/cypress-io/github-action/issues/48 | |
| # fail-fast: false | |
| # matrix: | |
| # # run copies of the current job in parallel | |
| # containers: [1] | |
| # steps: | |
| # - name: Checkout | |
| # uses: actions/checkout@v3 | |
| # - name: Download the build folders | |
| # uses: actions/download-artifact@v3 | |
| # with: | |
| # name: build | |
| # path: .next | |
| # # Install NPM dependencies, cache them correctly | |
| # # and run all Cypress tests | |
| # - name: Test Chrome | |
| # uses: cypress-io/github-action@v4 | |
| # with: | |
| # # Specify Browser since container image is compile with Firefox | |
| # browser: chrome | |
| # start: pnpm start | |
| # wait-on: 'http://localhost:3000' | |
| # edge: | |
| # runs-on: ubuntu-latest | |
| # container: | |
| # image: cypress/browsers:node16.14.2-slim-chrome100-ff99-edge | |
| # options: --user 1001 # very important otherwise there is a permission error | |
| # needs: install | |
| # strategy: | |
| # # when one test fails, DO NOT cancel the other | |
| # # containers, because this will kill Cypress processes | |
| # # leaving the Dashboard hanging ... | |
| # # https://github.com/cypress-io/github-action/issues/48 | |
| # fail-fast: false | |
| # matrix: | |
| # # run copies of the current job in parallel | |
| # containers: [1] | |
| # steps: | |
| # - name: Checkout | |
| # uses: actions/checkout@v3 | |
| # - name: Download the build folders | |
| # uses: actions/download-artifact@v3 | |
| # with: | |
| # name: build | |
| # path: .next | |
| # # Install NPM dependencies, cache them correctly | |
| # # and run all Cypress tests | |
| # - name: Test Edge | |
| # uses: cypress-io/github-action@v4 | |
| # with: | |
| # # Specify Browser since container image is compile with Firefox | |
| # browser: edge | |
| # start: pnpm start | |
| # wait-on: 'http://localhost:3000' |