Skip to content

chore: Bump chai from 4.3.8 to 4.3.9 #212

chore: Bump chai from 4.3.8 to 4.3.9

chore: Bump chai from 4.3.8 to 4.3.9 #212

Workflow file for this run

name: Continuous Integration
on: [push, pull_request]
jobs:
test:
name: Test
runs-on: ${{ matrix.os }}
strategy:
fail-fast: false
matrix:
os: [ubuntu-latest, macos-latest, windows-latest]
node-version: ["12", "14", "16", "18"]
steps:
- name: Checkout project
uses: actions/checkout@v3
- 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