Skip to content

update readme with new package name #4

update readme with new package name

update readme with new package name #4

Workflow file for this run

name: CI
on:
push:
branches: ["main"]
pull_request_target:
paths:
- 'src/**'
- 'test/**'
- '*.json'
workflow_dispatch:
jobs:
build:
strategy:
matrix:
node-version: [20.x, 22.x, 24.x]
platform:
- os: ubuntu-latest
shell: bash
- os: macos-latest
shell: bash
- os: windows-latest
shell: bash
- os: windows-latest
shell: powershell
fail-fast: false
runs-on: ${{ matrix.platform.os }}
defaults:
run:
shell: ${{ matrix.platform.shell }}
steps:
- name: Checkout Repository
uses: actions/checkout@v4
- name: Use Nodejs ${{ matrix.node-version }}
uses: actions/setup-node@v4
with:
node-version: ${{ matrix.node-version }}
- name: Install dependencies
run: npm install
- name: Run Tests
run: npm test -- -c -t0