Skip to content

chore(deps-dev): bump sinon from 18.0.0 to 19.0.2 (#278) #653

chore(deps-dev): bump sinon from 18.0.0 to 19.0.2 (#278)

chore(deps-dev): bump sinon from 18.0.0 to 19.0.2 (#278) #653

Workflow file for this run

name: CI
on:
push:
branches:
- main
pull_request:
jobs:
node_tests:
name: Node ${{ matrix.node }} on ${{ matrix.os }}
runs-on: ${{ matrix.os }}
timeout-minutes: 10
strategy:
fail-fast: true
matrix:
os:
- ubuntu-latest
- windows-latest
node:
- 18
- 20
steps:
- name: Checkout source
uses: actions/checkout@v4
- name: Install Node ${{ matrix.node }}
uses: actions/setup-node@v4
with:
node-version: ${{ matrix.node }}
cache: npm
- run: npm ci
- run: npm run lint
- name: Run tests
run: npm run test --ignore-scripts
env:
# `chalk` has troubles with color detection while on CI and also in how it's used within our tests.
# https://github.com/chalk/supports-color/issues/106
FORCE_COLOR: 1