chore(deps-dev): bump @badeball/cypress-cucumber-preprocessor #123
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 | |
# Automatically cancel in-progress actions on the same branch | |
concurrency: | |
group: ${{ github.workflow }}-${{ github.event_name == 'pull_request_target' && github.head_ref || github.ref }} | |
cancel-in-progress: true | |
on: | |
push: | |
workflow_dispatch: | |
workflow_run: | |
workflows: ["♻️ Dependabot: Update bun.lockb"] | |
types: | |
- completed | |
jobs: | |
e2e: | |
runs-on: ubuntu-latest | |
steps: | |
- name: Checkout | |
uses: actions/checkout@11bd71901bbe5b1630ceea73d27597364c9af683 # v4.2.2 | |
- uses: actions/setup-node@39370e3970a6d050c480ffad4ff0ed4d3fdee5af #v4.1.0 | |
with: | |
node-version: "node" | |
- name: 🌭 Install bun | |
uses: oven-sh/setup-bun@4bc047ad259df6fc24a6c9b0f9a0cb08cf17fbe5 # v2 | |
- run: bun install --frozen-lockfile | |
- name: cypress-io/github-action needs package-lock.json | |
run: | | |
touch package-lock.json | |
- name: Cypress run | |
uses: cypress-io/github-action@f1f0912d392f0d06bdd01fb9ebe3b3299e5806fb # v6.7.7 | |
with: | |
build: bun run build | |
install-command: bun install --frozen-lockfile | |
spec: apps/${{ matrix.e2e_test }}/features | |
start: bun run start | |
- uses: actions/upload-artifact@50769540e7f4bd5e21e526ee35c689e35e0d6874 # v4.4.0 | |
if: failure() | |
with: | |
compression-level: 9 | |
name: cypress-${{ matrix.e2e_test }}-screenshots | |
path: e2e/cypress/screenshots | |
spec: features/${{ matrix.e2e_test }} | |
- uses: actions/upload-artifact@50769540e7f4bd5e21e526ee35c689e35e0d6874 # v4.4.0 | |
if: failure() | |
with: | |
compression-level: 9 | |
name: cypress-${{ matrix.e2e_test }}-videos | |
path: e2e/cypress/videos | |
strategy: | |
matrix: | |
e2e_test: | |
- spa_pkce_proconnect |