Skip to content

Node 16 support

Node 16 support #47

Workflow file for this run

name: Build and Deploy
on: [push]
jobs:
install-and-test:
runs-on: ubuntu-latest
strategy:
matrix:
node-version: [10.x, 12.x, 14.x, 16.x]
steps:
- uses: actions/checkout@master
- name: Use Node.js ${{ matrix.node-version }}
uses: actions/setup-node@master
with:
node-version: ${{ matrix.node-version }}
- name: Install and Test
run: |
yarn
yarn test
env:
CI: true