Merge with master #3119
Workflow file for this run
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: Design System component testing | |
on: | |
push: | |
paths: | |
- ".github/workflows/design-system-*" | |
- "packages/design-tokens/**" | |
- "packages/design-system/**" | |
permissions: | |
contents: read | |
deployments: read | |
pull-requests: write | |
statuses: write | |
jobs: | |
cypress-run: | |
runs-on: ubuntu-latest | |
strategy: | |
fail-fast: false | |
matrix: | |
browser: ["chrome", "firefox"] | |
steps: | |
- name: Checkout repository | |
uses: actions/checkout@3df4ab11eba7bda6032a0b82a6bb43b11571feac #v4.0.0 | |
- name: Use Node.js | |
uses: ./.github/actions/setup-node | |
- uses: actions/cache@704facf57e6136b1bc63b828d79edcd491f0ee84 #v3.3.2 | |
with: | |
path: ~/.cache/Cypress | |
key: my-cache-${{ runner.os }}-${{ hashFiles('pnpm-lock.yaml') }} | |
- name: Install dependencies | |
run: | | |
pnpm install --frozen-lockfile --ignore-scripts | |
pnpm cypress install | |
pnpm --filter @talend/assets-api run build:lib | |
pnpm --filter @talend/utils run build:lib | |
pnpm --filter @talend/icons run build:lib | |
pnpm --filter @talend/design-tokens run build:lib | |
- name: Cypress Component Testing | |
uses: cypress-io/github-action@59810ebfa5a5ac6fcfdcfdf036d1cd4d083a88f2 #v6.5.0 | |
with: | |
install: false | |
browser: ${{ matrix.browser }} | |
command: pnpm --filter @talend/design-system run test:cy | |
- name: Cypress screenshots upload | |
uses: actions/upload-artifact@a8a3f3ad30e3422c9c7b888a15615d19a852ae32 #v3.1.3 | |
if: failure() | |
with: | |
name: cypress-component-testing-${{ matrix.browser }}-screenshots | |
path: packages/design-system/cypress/screenshots/**/* | |
- name: Cypress videos upload | |
uses: actions/upload-artifact@a8a3f3ad30e3422c9c7b888a15615d19a852ae32 #v3.1.3 | |
if: failure() | |
with: | |
name: cypress-component-testing-${{ matrix.browser }}-videos | |
path: packages/design-system/cypress/videos/**/* |