chore(deps): bump cypress-io/github-action from 6.7.2 to 6.7.5 #3793
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@692973e3d937129bcbf40652eb9f2f61becf3332 #v4.1.7 | |
- name: Use Node.js | |
uses: ./.github/actions/setup-node | |
- uses: actions/cache@0c45773b623bea8c8e75f6c82b208c3cf94ea4f9 #v4.0.2 | |
with: | |
path: ~/.cache/Cypress | |
key: my-cache-${{ runner.os }}-${{ hashFiles('yarn.lock') }} | |
- name: Install dependencies | |
run: | | |
yarn --frozen-lock --ignore-scripts | |
yarn cypress install | |
yarn workspace @talend/assets-api run build:lib:esm | |
yarn workspace @talend/utils run build:lib:esm | |
yarn workspace @talend/icons run build:lib | |
yarn workspace @talend/icons run build:lib:esm | |
yarn workspace @talend/design-tokens run build:lib | |
yarn workspace @talend/design-tokens run build:lib:esm | |
- name: Cypress Component Testing | |
uses: cypress-io/github-action@496e7dc0edc421a9de8a36a31c793340e00c61bf #v6.7.5 | |
with: | |
install: false | |
browser: ${{ matrix.browser }} | |
command: yarn workspace @talend/design-system run test:cy | |
- name: Cypress screenshots upload | |
uses: actions/upload-artifact@0b2256b8c012f0828dc542b3febcab082c67f72b #v4.3.4 | |
if: failure() | |
with: | |
name: cypress-component-testing-${{ matrix.browser }}-screenshots | |
path: packages/design-system/cypress/screenshots/**/* | |
- name: Cypress videos upload | |
uses: actions/upload-artifact@0b2256b8c012f0828dc542b3febcab082c67f72b #v4.3.4 | |
if: failure() | |
with: | |
name: cypress-component-testing-${{ matrix.browser }}-videos | |
path: packages/design-system/cypress/videos/**/* |