Skip to content
This repository has been archived by the owner on Sep 8, 2023. It is now read-only.

chore(deps-dev): bump sinon from 15.0.3 to 15.1.2 #97

chore(deps-dev): bump sinon from 15.0.3 to 15.1.2

chore(deps-dev): bump sinon from 15.0.3 to 15.1.2 #97

Workflow file for this run

name: Run unit tests
on:
pull_request:
branches: [master]
jobs:
unit-tests:
runs-on: ubuntu-latest
strategy:
matrix:
node_version:
- 14
- 16
steps:
- name: Checkout
uses: actions/checkout@v2
- name: Setup Node.js
uses: actions/setup-node@v2
with:
node-version: ${{ matrix.node_version }}
- name: Install dependencies
run: npm install
- name: Run unit tests
run: npm test
env:
CI: true