Skip to content

Bump eslint-config-next from 16.0.3 to 16.0.6 #34

Bump eslint-config-next from 16.0.3 to 16.0.6

Bump eslint-config-next from 16.0.3 to 16.0.6 #34

Workflow file for this run

name: Lint
on:
push:
branches: [ main ]
pull_request:
types: [opened, synchronize, reopened]
jobs:
lint:
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@v5
- name: Use Node.js 24.x
uses: actions/setup-node@v3
with:
node-version: 24.x
cache: 'npm'
- name: Cache node modules
id: cache-npm
uses: actions/cache@v4
env:
cache-name: cache-node-modules
with:
# npm cache files are stored in `~/.npm` on Linux/macOS
path: ~/.npm
key: ${{ runner.os }}-build-${{ env.cache-name }}-${{ hashFiles('**/package-lock.json') }}
restore-keys: |
${{ runner.os }}-build-${{ env.cache-name }}-
${{ runner.os }}-build-
${{ runner.os }}-
- run: npm ci
- run: npm run lint