Skip to content

chore(deps): update dependency eslint-plugin-cypress to v4 #11479

chore(deps): update dependency eslint-plugin-cypress to v4

chore(deps): update dependency eslint-plugin-cypress to v4 #11479

Workflow file for this run

---
name: super-linter
on:
pull_request:
branches: [master]
merge_group:
workflow_dispatch:
permissions:
contents: read
packages: read
statuses: write
jobs:
super-linter:
runs-on: ubuntu-latest
timeout-minutes: 30
steps:
- uses: actions/checkout@11bd71901bbe5b1630ceea73d27597364c9af683 # v4.2.2
with:
fetch-depth: 0
- uses: actions/setup-node@1d0ff469b7ec7b3cb9d8673fde0c81c44821de2a # v4.2.0
with:
node-version-file: .node-version
cache: npm
- run: npm ci
- run: npm ci
working-directory: test/e2e
- run: bash "${GITHUB_WORKSPACE}/scripts/super_linter/super_linter/set_path.sh"
- name: Super-Linter
uses: super-linter/super-linter/slim@4e8a7c2bf106c4c766c816b35ec612638dc9b6b2 # v7.3.0
env:
GITHUB_TOKEN: ${{ secrets.GITHUB_TOKEN }}
LINTER_RULES_PATH: .
# Go modulesを使っているため、こちらはfalseにする
VALIDATE_GO: false
ESLINT_USE_FLAT_CONFIG: false
VALIDATE_JAVASCRIPT_STANDARD: false
VALIDATE_TYPESCRIPT_STANDARD: false
VALIDATE_GIT_COMMITLINT: false
concurrency:
group: ${{ github.workflow }}-${{ github.event_name }}-${{ github.ref }}
cancel-in-progress: true