chore: latest test #21
This file contains 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 Test CI | |
on: [push, pull_request] | |
jobs: | |
cypress-run: | |
runs-on: ubuntu-24.04 | |
container: | |
# see: Cypress.Dockerfile | |
image: cypress/included:cypress-13.17.0-node-22.13.0-chrome-131.0.6778.264-1-ff-134.0-edge-131.0.2903.112-1 | |
options: --user 1001 | |
steps: | |
- name: Checkout | |
uses: actions/checkout@v4 | |
- name: Install pnpm | |
uses: pnpm/action-setup@v4 | |
with: | |
version: 8.15.8 | |
- name: Install deps | |
run: pnpm install | |
# - name: Cypress run | |
# uses: cypress-io/github-action@v6 | |
# with: | |
# # build: pnpm run build | |
# start: pnpm run test:e2e:ci | |
# browser: chrome | |
- name: Cypress run | |
run: pnpm run test:e2e:ci | |
- name: upload failed image diff artifacts | |
if: failure() | |
uses: actions/upload-artifact@v4 | |
with: | |
name: cypress-image-diff-failure-results | |
path: cypress-image-diff | |
retention-days: 7 |