Skip to content

Bump mocha from 10.6.0 to 10.7.0 #36

Bump mocha from 10.6.0 to 10.7.0

Bump mocha from 10.6.0 to 10.7.0 #36

Workflow file for this run

name: "Lint and Test"
on:
push:
paths:
- lib/**
- test/**
- .jshintrc
- .github/workflows/node-ci.yml
- package.json
- package-lock.json
pull_request:
paths:
- lib/**
- test/**
- .jshintrc
- .github/workflows/node-ci.yml
- package.json
- package-lock.json
jobs:
build-and-test:
name: "Build and test"
runs-on: ubuntu-latest
steps:
- name: "Checkout the repository"
uses: actions/checkout@v4
with:
submodules: true
- name: "Set up Node"
uses: actions/setup-node@v4
with:
node-version: 18
- name: "Install Node dependencies"
run: |
npm install
- name: "Lint and coding style check with jshint"
run: |
npm run lint
- name: "Test with mocha"
run: |
npm run test