Skip to content

ESM-compatible exports #18

ESM-compatible exports

ESM-compatible exports #18

Workflow file for this run

name: Node.js CI
on:
push:
branches: master
pull_request:
jobs:
test:
strategy:
matrix:
node: [10.x, 12.x, 14.x, 16.x]
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@v2
- name: Use Node.js ${{ matrix.node }}
uses: actions/setup-node@v1
with:
node-version: ${{ matrix.node }}
- run: npm install
- run: npm test