Skip to content

feat: Web Bot Auth cryptographic verification (0.14.0) #50

feat: Web Bot Auth cryptographic verification (0.14.0)

feat: Web Bot Auth cryptographic verification (0.14.0) #50

Workflow file for this run

name: CI
on:
push:
branches: [main]
pull_request:
branches: [main]
jobs:
test:
runs-on: ubuntu-latest
strategy:
matrix:
# Node 18 dropped in 0.12: no globalThis.crypto by default (needs 19+),
# and it reached end of life in April 2025.
node: [20, 22, 24]
steps:
- uses: actions/checkout@v4
- uses: actions/setup-node@v4
with:
node-version: ${{ matrix.node }}
cache: npm
- run: npm install
- run: npm run typecheck
- run: npm run build
- run: npm test