Skip to content

CI: Add Node.js nightly build to integration tests #81

CI: Add Node.js nightly build to integration tests

CI: Add Node.js nightly build to integration tests #81

Workflow file for this run

name: Unit tests
on:
- push
- pull_request
jobs:
unit:
name: Node.js ${{ matrix.node-version }}
runs-on: ubuntu-latest
strategy:
matrix:
node-version:
- 10
- 12
- 14
- 16
- 18
- 20
steps:
- name: Checkout
uses: actions/checkout@v4
- name: Install Node.js
uses: actions/setup-node@v4
with:
node-version: ${{ matrix.node-version }}
- name: Install dependencies
run: npm install
- name: Run unit tests
run: npm test