Skip to content

docs: update README with broadcastable events (#4) #13

docs: update README with broadcastable events (#4)

docs: update README with broadcastable events (#4) #13

Workflow file for this run

name: Tests
on:
push:
branches: [main, master]
pull_request:
branches: [main, master]
jobs:
test:
runs-on: ubuntu-latest
strategy:
matrix:
node-version: [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 ci
- run: npm run build
- run: npx tsx --test $(find tests -name '*.test.ts')