chore(deps-dev): Bump stylelint from 15.10.2 to 16.2.0 #3134
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: '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 |