Skip to content

Bump mocha from 10.6.0 to 10.7.0 #41

Bump mocha from 10.6.0 to 10.7.0

Bump mocha from 10.6.0 to 10.7.0 #41

Workflow file for this run

name: "Tests"
on:
push:
paths:
- "lib/**"
- "test/**"
- ".github/workflows/tests.yml"
- "package.json"
- "package-lock.json"
- "Gruntfile.js"
pull_request:
paths:
- "lib/**"
- "test/**"
- ".github/workflows/tests.yml"
- "package.json"
- "package-lock.json"
- "Gruntfile.js"
jobs:
build:
name: "Run tests"
runs-on: ubuntu-latest
steps:
- name: "Checkout the repository"
uses: actions/checkout@v4
- name: "Set up Node 18"
uses: actions/setup-node@v4
with:
node-version: 18
- name: "Install Node dependencies"
run: |
npm install
- name: "Run lint"
run: |
npm run lint
- name: "Run tests"
run: |
npm run test