Skip to content

Bump @eslint/js from 9.7.0 to 9.8.0 #77

Bump @eslint/js from 9.7.0 to 9.8.0

Bump @eslint/js from 9.7.0 to 9.8.0 #77

Workflow file for this run

name: CI
on:
push:
branches: [main]
pull_request:
types: [synchronize, opened, reopened]
jobs:
build:
runs-on: ubuntu-latest
strategy:
matrix:
node-version: [22.x]
steps:
- uses: actions/checkout@v4
- run: corepack enable
- name: Use Node.js ${{ matrix.node-version }}
uses: actions/setup-node@v4
with:
node-version: ${{ matrix.node-version }}
cache: 'pnpm'
- run: pnpm install --frozen-lockfile
- run: pnpm codegen --check
- run: pnpm build
- run: pnpm lint
- run: pnpm test