Skip to content

Bump eslint from 9.16.0 to 9.17.0 in the patch-and-minor-dependencies group #222

Bump eslint from 9.16.0 to 9.17.0 in the patch-and-minor-dependencies group

Bump eslint from 9.16.0 to 9.17.0 in the patch-and-minor-dependencies group #222

Workflow file for this run

name: "Lint and Test"
on:
push:
branches: [ "main" ]
# Publish semver tags as releases.
tags: [ 'v*.*.*' ]
pull_request:
branches: [ "main" ]
jobs:
ci:
runs-on: ubuntu-latest
steps:
- name: Checkout repository
uses: actions/checkout@v4
- name: Use Node.js 23
uses: actions/setup-node@v4
with:
node-version: '23'
- name: Install dependencies
run: npm ci
- name: Lint
run: npm run lint
- name: Test
run: npm test