Skip to content

fix(toggle): hint color in disabled state (#DS-4344) (#1103) #1305

fix(toggle): hint color in disabled state (#DS-4344) (#1103)

fix(toggle): hint color in disabled state (#DS-4344) (#1103) #1305

Workflow file for this run

name: E2E tests
on:
push:
branches:
- main
pull_request:
permissions:
contents: write
pull-requests: write
jobs:
tests:
runs-on: ubuntu-latest
timeout-minutes: 10
steps:
- uses: actions/checkout@v4
- uses: ./.github/workflows/actions/setup-node
- run: yarn run e2e:setup
- id: run-e2e-tests
run: |
yarn run e2e:components
- uses: actions/upload-artifact@v4
if: ${{ always() }}
id: upload-report
with:
name: playwright-report
path: playwright-report/
retention-days: 5
- uses: thollander/actions-comment-pull-request@v3
if: ${{ failure() && steps.run-e2e-tests.outcome == 'failure' }}
with:
message: |
### 🚨 E2E tests failed
Review the [report](${{ steps.upload-report.outputs.artifact-url }}) for details.
---
💡 Comment `/approve-snapshots` to approve snapshot changes.