removed minimum size difference for nextjs-bundle-analysis #61
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: ESLint | |
on: | |
push: | |
branches: [main] # or [master] if that's name of the main branch | |
pull_request: | |
branches: [main] # or [master] if that's name of the main branch | |
jobs: | |
build: | |
runs-on: ubuntu-latest | |
steps: | |
- uses: actions/checkout@v3 | |
- uses: actions/setup-node@v3 | |
with: | |
node-version: "20" | |
check-latest: true | |
- name: Install dependencies | |
run: yarn install # or npm ci if you use npm and have the package-lock.json file | |
- uses: CatChen/eslint-suggestion-action@v2 | |
with: | |
request-changes: true # optional | |
fail-check: false # optional | |
directory: "./" #optional | |
targets: "." #optional | |
eslint-lib-path: "./node_modules/eslint/lib/api.js" #optional | |
eslint-bin-path: "node_modules/.bin/eslint" # optional |