Skip to content

Bump eslint from 9.23.0 to 9.24.0 #231

Bump eslint from 9.23.0 to 9.24.0

Bump eslint from 9.23.0 to 9.24.0 #231

Workflow file for this run

name: CI
on:
push:
branches:
- main
pull_request:
branches:
- main
paths-ignore:
- '**/*.md'
jobs:
eslint:
name: Lint
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@v4
- name: Use Node.js latest
uses: actions/setup-node@v4
with:
cache: npm
- name: npm install
run: npm ci
- name: eslint
run: npm run lint
- name: Initialize CodeQL
uses: github/codeql-action/init@v3
with:
tools: linked
languages: javascript, actions
queries: security-and-quality
- name: Perform CodeQL Analysis
uses: github/codeql-action/analyze@v3
test:
name: Test
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@v4
- name: Use Node.js latest
uses: actions/setup-node@v4
with:
cache: npm
- name: npm install and test
run: npm cit
env:
CI: true