Skip to content

ok, use one of ours #46

ok, use one of ours

ok, use one of ours #46

Workflow file for this run

name: 'commit-test'
on: [push]
jobs:
basic-tests:
runs-on: ubuntu-latest
strategy:
matrix:
node-version: [14.x, 16.x, 18.x, 20.x]
steps:
- uses: actions/checkout@v4
- name: Testing node v${{ matrix.node-version }}
uses: actions/setup-node@v4
with:
node-version: ${{ matrix.node-version }}
- run: npm install
- run: npm test