Skip to content

v1.3.0

v1.3.0 #53

Workflow file for this run

name: UbuntuCI
on: [push, pull_request]
jobs:
build:
runs-on: ubuntu-latest
strategy:
fail-fast: false
matrix:
node-version: [20.x, 22.x]
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 --force
- run: npm run build --if-present
- run: npm test
- uses: codecov/codecov-action@v2