Pyic 8272 - Playwright E2E POC #129
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
| # DO NOT CHANGE THIS FILE | |
| # This action should be kept as small as possible and only do linting of workflow actions as syntax errors in | |
| # actions cause them to silently fail. If you do need to change this file, make sure that you watch it execute | |
| # successfully in GitHub actions as you will not be warned if it fails. | |
| name: Lint GitHub Workflows | |
| on: | |
| pull_request: | |
| paths: | |
| - ".github/workflows/**" | |
| jobs: | |
| lint: | |
| runs-on: ubuntu-latest | |
| steps: | |
| - uses: actions/checkout@v6 | |
| - name: Run actionlint | |
| uses: reviewdog/action-actionlint@e58ee9d111489c31395fbe4857b0be6e7635dbda # v1.70.0 | |
| with: | |
| reporter: github-pr-check | |
| fail_level: error |