Add Playwright export_counts helper and compare_counts_csv_files …
#3170
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: super-linter | |
| # | |
| # Documentation: | |
| # https://help.github.com/en/articles/workflow-syntax-for-github-actions | |
| # | |
| on: pull_request | |
| permissions: | |
| contents: read | |
| packages: read | |
| # To report GitHub Actions status checks | |
| statuses: write | |
| jobs: | |
| lint: | |
| name: Lint many languages with super-linter | |
| runs-on: ubuntu-latest | |
| steps: | |
| - name: Checkout Code | |
| uses: actions/checkout@v6 | |
| with: | |
| # super-linter needs the full git history to get the | |
| # list of files that changed across commits | |
| fetch-depth: 0 | |
| - name: Lint Code Base | |
| uses: github/super-linter/slim@v7 | |
| env: | |
| VALIDATE_ALL_CODEBASE: false | |
| DEFAULT_BRANCH: main | |
| GITHUB_TOKEN: ${{ secrets.GITHUB_TOKEN }} | |
| VALIDATE_BASH: false | |
| VALIDATE_EDITORCONFIG: false | |
| VALIDATE_GO_RELEASER: false | |
| VALIDATE_MARKDOWN_PRETTIER: false | |
| VALIDATE_PYTHON_PYLINT: false | |
| VALIDATE_PYTHON_MYPY: false | |
| VALIDATE_JSCPD: false | |
| VALIDATE_PYTHON_BLACK: false | |
| VALIDATE_PYTHON_PYINK: false | |
| LINTER_RULES_PATH: / | |
| PYTHON_FLAKE8_CONFIG_FILE: .flake8 | |
| PYTHON_ISORT_CONFIG_FILE: pyproject.toml | |
| YAML_CONFIG_FILE: .yamllint.yaml |