Bump cypress from 13.15.0 to 13.15.1 in the node-requirements group #555
Workflow file for this run
This file contains 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: Lint | |
permissions: read-all | |
on: # yamllint disable-line rule:truthy | |
push: null | |
concurrency: | |
group: ${{ github.workflow }}-${{ github.ref }} | |
cancel-in-progress: true | |
jobs: | |
build: | |
name: Lint | |
runs-on: ubuntu-latest | |
permissions: | |
contents: read | |
packages: read | |
# To report GitHub Actions status checks | |
statuses: write | |
steps: | |
- name: Checkout code | |
uses: actions/checkout@v4 | |
with: | |
fetch-depth: 0 | |
- name: Super-linter | |
uses: super-linter/super-linter/[email protected] | |
env: | |
DEFAULT_BRANCH: main | |
# To report GitHub Actions status checks | |
GITHUB_TOKEN: ${{ secrets.GITHUB_TOKEN }} | |
GITHUB_ACTIONS_COMMAND_ARGS: '-ignore SC.*' | |
TYPESCRIPT_STANDARD_TSCONFIG_FILE: cypress/tsconfig.json | |
VALIDATE_CHECKOV: false | |
VALIDATE_TYPESCRIPT_PRETTIER: false | |
VALIDATE_PYTHON_FLAKE8: false | |
VALIDATE_PYTHON_ISORT: false | |
VALIDATE_JSCPD: false | |
VALIDATE_PYTHON_MYPY: false |