chore(deps): update all non-major dependencies #2717
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: End to end tests | |
on: | |
pull_request: | |
paths: | |
- 'packages/documentation/**' | |
- 'packages/styles/**' | |
- 'packages/components/**' | |
- 'packages/internet-header/**' | |
- 'packages/icons/**' | |
workflow_dispatch: | |
jobs: | |
e2e: | |
runs-on: ubuntu-latest | |
steps: | |
- name: Checkout | |
uses: actions/checkout@v4 | |
with: | |
fetch-depth: 0 | |
- name: Setup | |
uses: swisspost/design-system/.github/actions/setup-pnpm@main | |
with: | |
use_cache: false | |
- name: Cache cypress | |
uses: actions/cache@v3 | |
with: | |
path: /home/runner/.cache/Cypress | |
key: ${{ runner.os }}-cypress-${{ hashFiles('./pnpm-lock.yaml') }} | |
restore-keys: ${{ runner.os }}-cypress- | |
- name: Install & build dependencies | |
run: pnpm bootstrap | |
- name: Cypress info | |
run: pnpm --filter design-system-documentation exec cypress info | |
- name: Run tests | |
run: pnpm e2e:ci | |
- name: Upload screenshots | |
uses: actions/[email protected] | |
if: failure() | |
with: | |
name: cypress-snapshots | |
path: packages/documentation/cypress/screenshots | |
retention-days: 14 |