Skip to content

0.8.6

0.8.6 #74

Workflow file for this run

name: Test
on:
push: ~
pull_request: ~
jobs:
run-tests:
runs-on: ubuntu-latest
strategy:
matrix:
# See supported Node.js release schedule at https://nodejs.org/en/about/releases/
node-version:
- "22"
- "20"
- "18"
steps:
- uses: actions/checkout@v2
- name: Use Node.js ${{ matrix.node-version }}
uses: actions/setup-node@v2
with:
node-version: ${{ matrix.node-version }}
- run: npm ci
- run: npm test