Skip to content

Release version 3.7.0 of the npm package. #67

Release version 3.7.0 of the npm package.

Release version 3.7.0 of the npm package. #67

Workflow file for this run

name: CI
on:
push:
branches:
- main
pull_request:
branches:
- main
jobs:
test:
runs-on: ubuntu-latest
strategy:
matrix:
node-version:
- 12.x
- 14.x
- 16.x
- 18.x
steps:
- name: Use Node.js ${{ matrix.node-version }}
uses: actions/setup-node@v3
with:
node-version: ${{ matrix.node-version }}
- uses: actions/checkout@v3
- run: npm ci --ignore-scripts
- run: npm run build
- run: npm test
- run: npm run spec