Skip to content

docs: add badger

docs: add badger #6

Workflow file for this run

name: Test
on:
push:
branches:
- main
pull_request:
branches:
- main
jobs:
test:
name: Test
runs-on: ubuntu-latest
strategy:
matrix:
client: [js, go]
server: [js, go]
steps:
- uses: actions/checkout@v4
- uses: actions/setup-node@v4
with:
registry-url: 'https://registry.npmjs.org'
node-version: 20
cache: 'npm'
- uses: actions/setup-go@v5
with:
go-version: '1.23'
cache-dependency-path: go/go.sum
- run: npm ci
- run: node compat test ${{ matrix.client }} ${{ matrix.server }}