Skip to content

refactor(types): migrate from tsd to tstyche + CI matrix bump #232

refactor(types): migrate from tsd to tstyche + CI matrix bump

refactor(types): migrate from tsd to tstyche + CI matrix bump #232

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, 26.x]
redis-tag: [7, 8]
services:
redis:
image: redis:${{ matrix.redis-tag }}
ports:
- 6379:6379
options: --entrypoint redis-server
steps:
- uses: actions/checkout@v6
- name: Use Node.js
uses: actions/setup-node@v6
with:
node-version: ${{ matrix.node-version }}
- name: Install
run: |
npm install
- name: Run tests
run: |
npm run test