Skip to content

Merge pull request #57 from mrmlnc/issue-56 #12

Merge pull request #57 from mrmlnc/issue-56

Merge pull request #57 from mrmlnc/issue-56 #12

Workflow file for this run

name: CI
on:
push:
workflow_dispatch:
jobs:
test:
runs-on: ubuntu-latest
strategy:
fail-fast: false
matrix:
node-version: [8.3.0, 8, 10, 12, 14, 16, 18, 20, 22]
steps:
- uses: actions/checkout@v4
- name: Use Node.js ${{ matrix.node-version }}
uses: actions/setup-node@v4
with:
node-version: ${{ matrix.node-version }}
- run: npm install
- run: npm test