Skip to content

Release version 2.3.0 #16

Release version 2.3.0

Release version 2.3.0 #16

Workflow file for this run

# https://docs.github.com/en/actions/guides/building-and-testing-nodejs
name: CI
on:
push:
paths-ignore: ['*.md']
jobs:
test:
strategy:
matrix:
include:
- { node: 14.x, platform: ubuntu-latest }
- { node: 16.x, platform: windows-latest }
- { node: 18.x, platform: macos-latest }
runs-on: ${{ matrix.platform }}
steps:
- uses: actions/checkout@v2
- uses: actions/setup-node@v2
with:
node-version: ${{ matrix.node }}
cache: npm
- run: npm ci
- run: npm test