Skip to content

move examples together, fix statsig not being initialized #101

move examples together, fix statsig not being initialized

move examples together, fix statsig not being initialized #101

Workflow file for this run

name: Docs
on:
pull_request:
paths:
- packages/**
- apps/docs/**
env:
CI: true
PNPM_CACHE_FOLDER: .pnpm-store
jobs:
build:
timeout-minutes: 5
runs-on: ubuntu-latest
steps:
- name: Checkout
uses: actions/checkout@master
with:
fetch-depth: 0
- name: Setup pnpm
uses: pnpm/action-setup@v2
- name: Setup node
uses: actions/setup-node@v4
with:
node-version-file: "package.json"
- name: Setup pnpm config
run: pnpm config set store-dir $PNPM_CACHE_FOLDER
- name: Install dependencies
run: pnpm i
- name: Build
run: pnpm --filter @docs/triplex ci:build
- name: Typecheck
run: pnpm --filter @docs/triplex typedef
- name: Ensure clean git
run: node ./scripts/ensure-clean-git.js