fix(inline-edit): wrap action buttons to support opacity-based palette (#DS-5219) #3531
Workflow file for this run
This file contains hidden or 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 tests | |
| on: | |
| push: | |
| branches: | |
| - main | |
| pull_request: | |
| permissions: | |
| contents: write | |
| pull-requests: write | |
| jobs: | |
| tests: | |
| runs-on: ubuntu-latest | |
| timeout-minutes: 30 | |
| steps: | |
| - uses: actions/checkout@df4cb1c069e1874edd31b4311f1884172cec0e10 # v6.0.3 | |
| - uses: ./.github/workflows/actions/setup-node | |
| - run: yarn run e2e:setup | |
| - id: run-e2e-tests | |
| run: | | |
| yarn run e2e:components | |
| - uses: actions/upload-artifact@043fb46d1a93c77aae656e7c1c64a875d1fc6a0a # v7.0.1 | |
| if: ${{ always() }} | |
| id: upload-report | |
| with: | |
| name: playwright-report | |
| path: playwright-report/ | |
| retention-days: 5 | |
| - uses: thollander/actions-comment-pull-request@24bffb9b452ba05a4f3f77933840a6a841d1b32b # v3.0.1 | |
| 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. |