Skip to content

Bump eslint from 9.11.1 to 9.12.0 #1270

Bump eslint from 9.11.1 to 9.12.0

Bump eslint from 9.11.1 to 9.12.0 #1270

Workflow file for this run

name: "NPM Lint & Build"
on:
pull_request:
push:
jobs:
lint:
name: "Lint & Build"
runs-on: ${{ matrix.operating-system }}
continue-on-error: ${{ matrix.experimental }}
strategy:
matrix:
node-version:
- "18"
operating-system:
- "ubuntu-latest"
experimental:
- false
include:
- node-version: "19"
operating-system: "ubuntu-latest"
experimental: true
steps:
- name: "Checkout"
uses: "actions/checkout@v4"
- name: "NPM install"
uses: ./.github/actions/npm
with:
node-version: '${{ matrix.node-version }}'
- name: "Lint"
run: npm run lint -- --format unix
- name: "Build"
run: npm run build