Skip to content

Bump @eslint/js from 9.11.1 to 9.14.0 #77

Bump @eslint/js from 9.11.1 to 9.14.0

Bump @eslint/js from 9.11.1 to 9.14.0 #77

Workflow file for this run

name: "Lint JS"
on:
pull_request:
push:
branches:
- main
jobs:
build-app:
defaults:
run:
shell: bash -el {0}
strategy:
fail-fast: false
matrix:
include:
- platform: ubuntu-latest
runs-on: ${{ matrix.platform }}
steps:
- uses: actions/checkout@v4
with:
submodules: true
- name: Setup node
uses: actions/setup-node@v4
with:
node-version: 20
cache: "npm"
- name: Install Dependencies
run: npm install
- name: Run Lint
run: npm run lint