Skip to content

chore: Bump chai from 5.1.1 to 5.1.2 #342

chore: Bump chai from 5.1.1 to 5.1.2

chore: Bump chai from 5.1.1 to 5.1.2 #342

Workflow file for this run

name: Continuous Integration
on:
push:
branches:
- master
pull_request:
jobs:
test:
name: Test
runs-on: ${{ matrix.os }}
strategy:
fail-fast: false
matrix:
os: [ubuntu-latest, macos-latest, windows-latest]
node-version: ["16", "18", "20"]
steps:
- name: Checkout project
uses: actions/checkout@v2
- name: Setup Node.js
uses: actions/setup-node@v3
with:
node-version: ${{ matrix.node-version }}
check-latest: true
cache: 'npm'
- name: Install dependencies
run: npm ci
- name: Run tests
run: npm test