Skip to content

Align @eslint/js with ESLint 9 and pin the pair in Dependabot config #2543

Align @eslint/js with ESLint 9 and pin the pair in Dependabot config

Align @eslint/js with ESLint 9 and pin the pair in Dependabot config #2543

Workflow file for this run

name: "PR checks"
on:
push:
branches: [main]
pull_request:
workflow_dispatch:
jobs:
lint-js:
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@3d3c42e5aac5ba805825da76410c181273ba90b1 # v7.0.1
- uses: actions/setup-node@820762786026740c76f36085b0efc47a31fe5020 # v7.0.0
with:
node-version: "24.x"
cache: "npm"
- name: Install dependencies
run: npm ci
- name: Run Lint
run: npm run-script lint
check-js:
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@3d3c42e5aac5ba805825da76410c181273ba90b1 # v7.0.1
- uses: actions/setup-node@820762786026740c76f36085b0efc47a31fe5020 # v7.0.0
with:
node-version: "24.x"
cache: "npm"
- name: Install dependencies
run: npm ci
- name: Check generated JavaScript
run: .github/workflows/script/check-js.sh
check-json-schemas:
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@3d3c42e5aac5ba805825da76410c181273ba90b1 # v7.0.1
- uses: actions/setup-node@820762786026740c76f36085b0efc47a31fe5020 # v7.0.0
with:
node-version: "24.x"
cache: "npm"
- name: Install dependencies
run: npm ci
- name: Check generated JSON schemas
run: .github/workflows/script/check-json-schemas.sh
find-deadcode:
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@3d3c42e5aac5ba805825da76410c181273ba90b1 # v7.0.1
- uses: actions/setup-node@820762786026740c76f36085b0efc47a31fe5020 # v7.0.0
with:
node-version: "24.x"
cache: "npm"
- name: Install dependencies
run: npm ci
- name: Find deadcode
run: npm run find-deadcode
npm-test:
needs: [check-js]
strategy:
matrix:
os: [ubuntu-latest, macos-latest]
runs-on: ${{ matrix.os }}
steps:
- uses: actions/checkout@3d3c42e5aac5ba805825da76410c181273ba90b1 # v7.0.1
- uses: actions/setup-node@820762786026740c76f36085b0efc47a31fe5020 # v7.0.0
with:
node-version: "24.x"
cache: "npm"
- name: Install dependencies
run: npm ci
- name: Initialize CodeQL
id: init
uses: github/codeql-action/init@e4fba868fa4b1b91e1fdab776edc8cfbe6e9fb81 # v4.37.3
with:
languages: javascript
- name: Put CODEQL on PATH
run: |
echo "$(dirname "${{ steps.init.outputs.codeql-path }}")" >> $GITHUB_PATH
- name: npm run-script test
run: npm run-script test