Skip to content

docs: public README, MIT license, and package visibility #1

docs: public README, MIT license, and package visibility

docs: public README, MIT license, and package visibility #1

Workflow file for this run

name: CI
on:
push:
branches: [master, main]
pull_request:
jobs:
build-test:
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@v4
- uses: actions/setup-node@v4
with:
node-version: '22'
cache: npm
- run: npm ci
- run: npx playwright install chromium
- run: npm run test
perf-gate:
runs-on: ubuntu-latest
needs: build-test
steps:
- uses: actions/checkout@v4
- uses: actions/setup-node@v4
with:
node-version: '22'
cache: npm
- run: npm ci
- run: npx playwright install chromium
- run: npm run perf:gate
env:
LOTUS_PERF_MIN_FPS: '10'
LOTUS_PERF_WAIT_MS: '6000'