Skip to content

Document PostHog compatibility gaps #9

Document PostHog compatibility gaps

Document PostHog compatibility gaps #9

Workflow file for this run

name: CI
on:
push:
branches:
- main
pull_request:
branches:
- main
jobs:
test:
name: Run tests
runs-on: ubuntu-latest
steps:
- name: Checkout repository
uses: actions/checkout@v4
- name: Install Rust toolchain
uses: dtolnay/rust-toolchain@stable
- name: Cache cargo artifacts
uses: Swatinem/rust-cache@v2
- name: Set up Bun
uses: oven-sh/setup-bun@v1
with:
bun-version: '1.2.2'
- name: Install JS test dependencies
working-directory: tests/js_client
run: bun install
- name: Run tests
run: cargo test --all --locked