Skip to content

chore(deps-dev): Bump eslint-plugin-security from 1.7.1 to 2.1.1 #3148

chore(deps-dev): Bump eslint-plugin-security from 1.7.1 to 2.1.1

chore(deps-dev): Bump eslint-plugin-security from 1.7.1 to 2.1.1 #3148

Workflow file for this run

name: 'Continuous Integration'
on:
push:
branches:
- main
- dev
pull_request_target:
branches:
- main
- dev
permissions:
checks: write
contents: read
concurrency:
group: ${{ github.workflow }}-${{ github.event_name == 'pull_request_target' && github.head_ref || github.ref }}
cancel-in-progress: true
jobs:
ci:
runs-on: ubuntu-latest
steps:
- name: Check out repository ✨
if: ${{ github.event_name == 'push' || github.event_name == 'pull_request' || github.event_name == 'pull_request_target' && github.actor != 'dependabot[bot]' }}
uses: actions/checkout@v4
- name: Check out repository πŸŽ‰ (dependabot)
if: ${{ github.event_name == 'pull_request_target' }}
uses: actions/checkout@v4
with:
ref: ${{ github.event.pull_request.head.sha }}
- name: Setup node env πŸ“¦
uses: actions/setup-node@v4
with:
node-version-file: '.nvmrc'
check-latest: true
cache: 'npm'
- name: Install dependencies πŸš€
run: npm ci --prefer-offline --no-audit --unsafe-perm=true
- name: Run linter(s) πŸ‘€
uses: wearerequired/lint-action@v2
with:
github_token: ${{ secrets.GITHUB_TOKEN }}
continue_on_error: false
git_name: github-actions[bot]
git_email: github-actions[bot]@users.noreply.github.com
auto_fix: false
stylelint: true
eslint: true
eslint_extensions: js,ts,vue
prettier: true
prettier_extensions: js,ts,vue
neutral_check_on_warning: true
- name: Run build 🏁
run: npm run generate