Skip to content

1.1.1

1.1.1 #4

Workflow file for this run

name: CI
on:
push:
branches:
- master
pull_request:
branches:
- master
jobs:
test:
name: Nodejs ${{ matrix.node_version }}
runs-on: ubuntu-latest
strategy:
matrix:
node_version: [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 run build --if-present
- run: npm test