Bump the npm-dependencies group across 1 directory with 18 updates #2353
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: ESLint | |
| permissions: | |
| contents: read | |
| on: | |
| pull_request: | |
| paths: | |
| - '**/*.js' | |
| - '**/*.jsx' | |
| - '**/*.ts' | |
| - '**/*.tsx' | |
| - '.eslintrc*' | |
| - 'package.json' | |
| - 'yarn.lock' | |
| - 'pnpm-lock.yaml' | |
| - 'package-lock.json' | |
| jobs: | |
| Linter: | |
| runs-on: ubuntu-latest | |
| steps: | |
| - name: Checkout code | |
| uses: actions/checkout@3d3c42e5aac5ba805825da76410c181273ba90b1 # v7.0.1 | |
| - name: Set up Node.js | |
| uses: actions/setup-node@820762786026740c76f36085b0efc47a31fe5020 # v7.0.0 | |
| with: | |
| node-version: '24' | |
| - name: Install dependencies | |
| run: npm ci | |
| - name: Create build file | |
| run: npm run set:oss | |
| - name: Run ESLint | |
| run: npx eslint . --ext .js,.jsx,.ts,.tsx |