Skip to content

Upgrade: Bump sinon from 11.1.2 to 19.0.2 #160

Upgrade: Bump sinon from 11.1.2 to 19.0.2

Upgrade: Bump sinon from 11.1.2 to 19.0.2 #160

Workflow file for this run

name: CI
on:
push:
branches: [main]
pull_request:
schedule:
- cron: 0 0 * * 0
concurrency:
group: ${{ github.workflow }}-${{ github.ref }}
cancel-in-progress: true
jobs:
test:
name: 🧪 Test (Node@${{ matrix.node }})
strategy:
matrix:
node: [10.12.0, 10, 12.0.0, 12, 14, 16, 18, 20]
runs-on: ubuntu-latest
steps:
- name: ⬇️ Checkout repo
uses: actions/checkout@v4
- name: ⎔ Setup Node v${{ matrix.node }}
uses: actions/setup-node@v4
with:
node-version: ${{ matrix.node }}
- name: 📥 Install dependencies
run: npm install
- name: ▶️ Run test script
run: npm run test
- name: ⬆️ Upload coverage report
uses: codecov/codecov-action@v4