This repository has been archived by the owner on Jul 24, 2024. It is now read-only.
build(deps-dev): bump eslint from 8.57.0 to 9.0.0 #306
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 JS | |
on: | |
push: | |
branches-ignore: | |
- "dependabot/**" | |
paths: | |
- "**/*.js" | |
- ".eslintrc.json" | |
- "package.json" | |
- "bin/node-sass" | |
- ".github/workflows/lint-js.yml" | |
pull_request: | |
paths: | |
- "**/*.js" | |
- ".eslintrc.json" | |
- "package.json" | |
- "bin/node-sass" | |
- ".github/workflows/lint-js.yml" | |
jobs: | |
build: | |
runs-on: ubuntu-latest | |
env: | |
SKIP_SASS_BINARY_DOWNLOAD_FOR_CI: true | |
steps: | |
- uses: actions/checkout@v4 | |
- uses: actions/setup-node@v4 | |
- name: Install packages | |
run: npm install --unsafe-perm | |
- name: Run Linting | |
run: npm run lint |