Skip to content

build(deps-dev): bump mocha from 10.6.0 to 10.7.0 #102

build(deps-dev): bump mocha from 10.6.0 to 10.7.0

build(deps-dev): bump mocha from 10.6.0 to 10.7.0 #102

Workflow file for this run

name: Test
on:
push:
branches:
- master
pull_request:
branches:
- master
permissions:
contents: read
jobs:
build:
runs-on: '${{ matrix.os }}'
strategy:
matrix:
os:
- ubuntu-latest
node-version:
- 16.x
- 18.x
- 20.x
steps:
- name: 'Set up Node.js ${{ matrix.node-version }}'
uses: actions/setup-node@v1
with:
node-version: '${{ matrix.node-version }}'
- uses: actions/checkout@v2
- run: npm -v && node -v
- run: npm install && npm install --only=dev
- run: npm run test
- name: Coveralls
uses: coverallsapp/github-action@master
with:
github-token: ${{ secrets.GITHUB_TOKEN }}