Skip to content

Add install telemetry #11

Add install telemetry

Add install telemetry #11

Workflow file for this run

name: CI
on:
push:
pull_request:
jobs:
test:
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@v5
with:
fetch-depth: 0
- uses: pnpm/action-setup@v5
with:
version: 11.0.6
- uses: actions/setup-node@v5
with:
node-version: 24
cache: pnpm
- run: pnpm install --frozen-lockfile
- run: pnpm lint
- run: pnpm format
- run: pnpm typecheck
- run: pnpm test
- run: pnpm build
- run: pnpm verify-pack
- run: pnpm audit --audit-level moderate
- name: Install gitleaks
run: |
GITLEAKS_VERSION=8.30.1
curl -sSfL "https://github.com/gitleaks/gitleaks/releases/download/v${GITLEAKS_VERSION}/gitleaks_${GITLEAKS_VERSION}_linux_x64.tar.gz" -o gitleaks.tar.gz
tar -xzf gitleaks.tar.gz gitleaks
sudo install -m 0755 gitleaks /usr/local/bin/gitleaks
- name: Run gitleaks
run: gitleaks detect --redact --verbose --source . --exit-code=2