Skip to content

chore: bump eslint from 10.7.0 to 10.8.0 #135

chore: bump eslint from 10.7.0 to 10.8.0

chore: bump eslint from 10.7.0 to 10.8.0 #135

Workflow file for this run

name: Lint
on:
push:
branches: [ main ]
paths:
- '**/*.js'
- package.json
- pnpm-lock.yaml
pull_request:
branches: [ main ]
paths:
- '**/*.js'
- package.json
- pnpm-lock.yaml
jobs:
build:
permissions:
contents: read
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@v7
# must come before setup-node
- name: Setup PNPM
uses: pnpm/action-setup@0ebf47130e4866e96fce0953f49152a61190b271 # v6.0.9
with:
version: latest
- name: Use Node.js
uses: actions/setup-node@v7.0.0
with:
cache: 'pnpm'
- name: Install dependencies
run: pnpm install --frozen-lockfile
- name: Run ESLint
run: npx eslint .