Skip to content

Release 0.58.1

Release 0.58.1 #88

Workflow file for this run

# Simple workflow for testing
name: Run tests
on:
# Runs on pushes and PRs targeting the default branch
push:
branches: ["main"]
pull_request:
branches: ["main"]
jobs:
test:
runs-on: ubuntu-latest
steps:
- name: Checkout
uses: actions/checkout@v3
- name: Node.js
uses: actions/setup-node@v3
- run: npm install
- run: npm run test