Skip to content

Bump chai from 4.4.0 to 4.4.1 #31

Bump chai from 4.4.0 to 4.4.1

Bump chai from 4.4.0 to 4.4.1 #31

Workflow file for this run

name: CI
on:
push:
branches:
- main
pull_request:
branches:
- '**'
workflow_dispatch: # Allows the workflow to be triggered manually
jobs:
unit-test:
runs-on: ubuntu-latest
strategy:
fail-fast: false
matrix:
node-version: ['14', 'lts/*', 'latest'] # 14 is the oldest supported Node.js version
steps:
- uses: actions/checkout@v4
- name: Install Node.js
uses: actions/setup-node@v4
with:
node-version: ${{ matrix.node-version }}
- name: Install dependencies
run: npm install
- name: Run unit tests
run: npm test