Skip to content

v1.2.5

v1.2.5 #78

Workflow file for this run

name: tests
on: push
jobs:
test:
runs-on: ubuntu-latest
timeout-minutes: 5
strategy:
matrix:
node-version: [16.x]
steps:
- uses: actions/checkout@main
- name: Setup Node.js
uses: actions/setup-node@main
with:
node-version: ${{ matrix.node-version }}
- name: Setup
run: yarn install
- name: Test
run: yarn test:coverage