Skip to content

chore(deps-dev): bump mocha from 10.6.0 to 10.7.0 (#395) #1002

chore(deps-dev): bump mocha from 10.6.0 to 10.7.0 (#395)

chore(deps-dev): bump mocha from 10.6.0 to 10.7.0 (#395) #1002

Workflow file for this run

name: CI
on: [push, pull_request]
jobs:
build:
runs-on: ubuntu-latest
strategy:
fail-fast: false
matrix:
node-version: [18, 20]
steps:
- uses: actions/checkout@v4
- uses: actions/setup-node@v4
with:
node-version: ${{ matrix.node-version }}
- uses: actions/cache@v4
with:
path: ~/.npm
key: ${{ runner.os }}-node-${{ hashFiles('**/package-lock.json') }}
restore-keys: |
${{ runner.os }}-node-
- name: Install
run: npm ci
- name: Build
run: npm run build
- name: Test
run: npm test
- name: Coverage
run: npm run coverage