Skip to content

Bump eslint from 9.39.4 to 10.0.3 #226

Bump eslint from 9.39.4 to 10.0.3

Bump eslint from 9.39.4 to 10.0.3 #226

Workflow file for this run

name: ci
on: [push, pull_request]
jobs:
test:
runs-on: ubuntu-latest
strategy:
matrix:
node-version: [20.x, 22.x, 24.x]
redis-tag: [7.2, 7.4]
services:
redis:
image: redis:${{ matrix.redis-tag }}
ports:
- 6379:6379
options: --entrypoint redis-server
steps:
- uses: actions/checkout@v4
- name: Use Node.js
uses: actions/setup-node@v4
with:
node-version: ${{ matrix.node-version }}
- name: Install
run: |
npm install
- name: Run tests
run: |
npm run test