Skip to content

Bump mocha from 10.7.3 to 10.8.0 #627

Bump mocha from 10.7.3 to 10.8.0

Bump mocha from 10.7.3 to 10.8.0 #627

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@v2
- name: Set up Node.js
uses: actions/setup-node@v2
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