chore(deps): bump ossf/scorecard-action from 2.3.3 to 2.4.3 #2191
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@v6 | |
| - 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. |