Skip to content

Add matchmaking/cancelled event #48

Add matchmaking/cancelled event

Add matchmaking/cancelled event #48

Workflow file for this run

name: CI
on: [push, pull_request]
jobs:
build:
runs-on: ubuntu-latest
strategy:
matrix:
node: [22]
steps:
- uses: actions/checkout@v4
- uses: actions/setup-node@v4
with:
node-version: ${{ matrix.node }}
cache: "npm"
- run: npm ci
- run: npm run format:check
- run: npm run lint
- run: npm run build:clean && git diff --exit-code
- run: npm run typecheck # typecheck depends on the `dist` directory for type-helpers.ts
- run: npm test