Skip to content

chore: fix CI

chore: fix CI #248

Workflow file for this run

name: CI
on: [push, pull_request]
jobs:
Tests:
runs-on: ${{ matrix.os }}
strategy:
matrix:
node-version: ["18", "20", "22"]
os: [ubuntu-latest, windows-latest]
name: Test on Node v${{ matrix.node-version }} on ${{ matrix.os }}
steps:
- uses: actions/checkout@v4
- name: Setup node
uses: actions/setup-node@v4
with:
node-version: ${{ matrix.node-version }}
cache: npm
- run: npm install
- run: npm run all
env:
CI: true