Skip to content

Update build matrix #125

Update build matrix

Update build matrix #125

Workflow file for this run

name: Node CI
on: [push, pull_request]
jobs:
build:
runs-on: ubuntu-latest
strategy:
matrix:
mocha-version: [8, 9, 10]
node-version: [16.x, 18.x, 20.x]
steps:
- uses: actions/checkout@v1
- name: Use Node.js ${{ matrix.node-version }}
uses: actions/setup-node@v1
with:
node-version: ${{ matrix.node-version }}
- name: npm install
run: npm install
- name: npm ci
run: npm run ci
env:
CI: true
MOCHA_VERSION: ${{ matrix.mocha-version }}