Skip to content

Bump chai from 5.0.0 to 5.0.3 #100

Bump chai from 5.0.0 to 5.0.3

Bump chai from 5.0.0 to 5.0.3 #100

Workflow file for this run

name: CI
on:
push:
branches: [main]
pull_request:
branches: [main]
jobs:
test:
runs-on: ubuntu-latest
strategy:
matrix:
node: [18, 20]
steps:
- name: Check out repository
uses: actions/checkout@v4
with:
submodules: true
- name: Set up Node
uses: actions/setup-node@v4
with:
node-version: ${{ matrix.node }}
check-latest: true
cache: npm
- name: Install dependencies
run: npm ci
- name: Run tests
run: npm test