ci: use cypress install action #148
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: E2E options/components | |
| on: | |
| push: | |
| branches: | |
| - main | |
| - v4 | |
| - feat/* | |
| - fix/* | |
| pull_request: | |
| workflow_dispatch: | |
| concurrency: | |
| group: ${{ github.workflow }}-${{ github.event.pull_request.number || github.ref }} | |
| cancel-in-progress: true | |
| jobs: | |
| build-and-test: | |
| runs-on: ubuntu-latest | |
| name: Build and test | |
| env: | |
| dir: ./packages/test-e2e | |
| steps: | |
| - name: Set alternate npm integrity keys | |
| run: | | |
| echo COREPACK_INTEGRITY_KEYS="$(curl https://registry.npmjs.org/-/npm/v1/keys | jq -c '{npm: .keys}')" >> $GITHUB_ENV | |
| - uses: actions/checkout@v4 | |
| - name: Cypress install | |
| uses: cypress-io/github-action@v6 | |
| with: | |
| # Disable running of tests within install job | |
| runTests: false | |
| - run: corepack enable | |
| - uses: actions/setup-node@v4 | |
| with: | |
| node-version: 23 | |
| cache: pnpm | |
| - run: pnpm install | |
| - name: Build | |
| run: pnpm run build | |
| - name: E2E tests | |
| working-directory: ${{env.dir}} | |
| run: pnpm run test:e2e | |
| - uses: actions/upload-artifact@v4 | |
| if: failure() | |
| with: | |
| name: cypress-screenshots | |
| path: ${{env.dir}}/tests/e2e/screenshots | |
| - uses: actions/upload-artifact@v4 | |
| if: always() | |
| with: | |
| name: cypress-videos | |
| path: ${{env.dir}}/tests/e2e/videos |