Skip to content

stop testing with node 12 and 14 #32

stop testing with node 12 and 14

stop testing with node 12 and 14 #32

Workflow file for this run

name: Node CI
on: push
jobs:
build:
strategy:
fail-fast: false
matrix:
node: [16, 18, 20]
os: ['ubuntu-latest', 'windows-latest', 'macOS-latest']
name: Node ${{ matrix.node }} on ${{ matrix.os }}
runs-on: ${{ matrix.os }}
steps:
- uses: actions/checkout@master
- name: Use Node.js ${{ matrix.node }}.x
uses: actions/setup-node@v1
with:
version: ${{ matrix.node }}.x
- name: install
run: npm install
- name: test
run: npm test