Skip to content

Bump mocha from 11.7.2 to 11.7.4 #799

Bump mocha from 11.7.2 to 11.7.4

Bump mocha from 11.7.2 to 11.7.4 #799

Workflow file for this run

name: Docker
on: [push]
jobs:
build-and-test-package:
name: Build & Test Package
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@v5
- name: Set up Node.js
uses: actions/setup-node@v5
with:
node-version: ${{ matrix.node-version }}
cache: "npm"
- name: Install dependencies
run: npm ci
- name: Build (typecheck) the project
run: npm run build
- name: Lint the project
run: npm run lint
- name: Test the project
run: npm run coverage