Skip to content

Release 1.1.0

Release 1.1.0 #9

Workflow file for this run

name: Node CI
on: [push, pull_request]
jobs:
test:
name: Run test suite
runs-on: ubuntu-latest
strategy:
matrix:
node-version: [18.x]
steps:
- uses: actions/checkout@v3.0.2
- name: Use Node.js ${{ matrix.node-version }}
uses: actions/setup-node@v3.4.1
with:
node-version: ${{ matrix.node-version }}
- run: npm install
- run: npm test
env:
CI: true