Remove F403 and F405 from Ruff ignore and replace wildcard imports #6716
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: Playwright Tests | |
| on: | |
| pull_request: | |
| merge_group: | |
| jobs: | |
| playwright: | |
| name: 'Playwright Tests' | |
| runs-on: ubuntu-latest | |
| steps: | |
| - uses: actions/checkout@v6 | |
| # Steps for Playwright testing with container | |
| - uses: actions/setup-node@v6 | |
| with: | |
| node-version: 24 | |
| - name: Run your tests | |
| timeout-minutes: 30 | |
| run: make pwtests | |
| - uses: actions/upload-artifact@v7 | |
| if: failure() | |
| with: | |
| name: test-results | |
| path: packages/playwright/test-results/ | |
| retention-days: 30 |