npm(deps-dev): bump lodash-es from 4.17.22 to 4.17.23 #30
Workflow file for this run
This file contains hidden or 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: Run JS linting | |
| on: | |
| pull_request: | |
| paths: | |
| - '**.js' | |
| - '**.jsx' | |
| - '**.css' | |
| - '**.scss' | |
| - 'package.json' | |
| - 'package-lock.json' | |
| - '.github/workflows/lint.yml' | |
| push: | |
| branches: | |
| - develop | |
| - main | |
| paths: | |
| - '**.js' | |
| - '**.jsx' | |
| - '**.css' | |
| - '**.scss' | |
| - 'package.json' | |
| - 'package-lock.json' | |
| - '.github/workflows/lint.yml' | |
| workflow_dispatch: | |
| permissions: | |
| contents: read | |
| jobs: | |
| lint: | |
| name: Run JS linting | |
| runs-on: ubuntu-latest | |
| steps: | |
| - name: Checkout code | |
| uses: actions/checkout@8e8c483db84b4bee98b60c0593521ed34d9990e8 # v6.0.1 | |
| with: | |
| persist-credentials: false | |
| - name: Setup Node.js | |
| uses: actions/setup-node@6044e13b5dc448c55e2357c09f80417699197238 # v6.2.0 | |
| with: | |
| node-version: "20" | |
| cache: "npm" | |
| - name: Install dependencies | |
| run: npm ci | |
| - name: Run ESLint on JS files | |
| run: npm run lint:js | |
| continue-on-error: true | |
| - name: Run Stylelint on CSS files | |
| run: npm run lint:css | |
| continue-on-error: true |