Skip to content

Update dependency chai to v4.4.1 #225

Update dependency chai to v4.4.1

Update dependency chai to v4.4.1 #225

Workflow file for this run

name: Pull Requests CI
on:
pull_request:
branches:
- master
- stable
jobs:
build_test:
runs-on: ubuntu-latest
strategy:
matrix:
node-version: [18.x]
steps:
- uses: actions/checkout@v4
- name: Use Node.js ${{ matrix.node-version }}
uses: actions/setup-node@v3
with:
node-version: ${{ matrix.node-version }}
- name: Install dependencies
run: npm ci --ignore-scripts
- name: Transpile code
run: npm run build
- name: Run unit tests
run: npm test