Skip to content

fix(web): sync embed copy of index.html with feedback footer #3

fix(web): sync embed copy of index.html with feedback footer

fix(web): sync embed copy of index.html with feedback footer #3

Workflow file for this run

name: CI
on:
push:
branches: [main]
pull_request:
branches: [main]
jobs:
test:
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@v4
- name: Set up Go
uses: actions/setup-go@v5
with:
go-version: "1.24"
- name: Vet
run: go vet ./...
- name: Test
run: go test ./... -race -count=1
python-sdk:
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@v4
- name: Set up Python
uses: actions/setup-python@v5
with:
python-version: "3.12"
- name: Test Python SDK
run: |
cd sdk/python
pip install -e .
pip install pytest
pytest
typescript-sdk:
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@v4
- name: Set up Node
uses: actions/setup-node@v4
with:
node-version: "22"
- name: Test TypeScript SDK
run: |
cd sdk/typescript
npm ci
npm test