Bump the prod-patch-updates group across 1 directory with 4 updates #842
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@08c6903cd8c0fde910a37f88322edcfb5dd907a8 # v5.0.0 | |
| - name: Set up Node.js | |
| uses: actions/setup-node@2028fbc5c25fe9cf00d9f06a71cc4710d4507903 # v6.0.0 | |
| with: | |
| node-version: '22' | |
| - 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 |