Skip to content

drop node 10, add node 16 testing #51

drop node 10, add node 16 testing

drop node 10, add node 16 testing #51

Workflow file for this run

name: Integration Tests
on: [ push, pull_request ]
jobs:
ci-test:
runs-on: ${{ matrix.os }}
strategy:
matrix:
os: [ windows-latest, ubuntu-latest ]
node-version: [ 12, 14, 16 ]
fail-fast: false
steps:
- uses: actions/checkout@v3
name: Checkout
with:
fetch-depth: 1
- uses: actions/setup-node@v3
name: Use Node.js ${{ matrix.node-version }}
with:
node-version: ${{ matrix.node-version }}
- name: npm install
run: npm install
- name: Run test suite
run: npm run test
env:
CI: true