Skip to content

Bump to version 0.3.1 #114

Bump to version 0.3.1

Bump to version 0.3.1 #114

Workflow file for this run

name: Test
on: [push]
jobs:
test:
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@v4
- name: Use Node.js
uses: actions/setup-node@v3
with:
node-version-file: .node-version
cache: npm
- run: npm ci
- run: npm run build
- run: npm install
working-directory: ./examples
- run: npm test
env:
NODE_OPTIONS: --test-reporter spec