Skip to content

docs: update docs and resource-lifecycle example for alpha.10 cacheTi… #200

docs: update docs and resource-lifecycle example for alpha.10 cacheTi…

docs: update docs and resource-lifecycle example for alpha.10 cacheTi… #200

Workflow file for this run

name: CI
on:
pull_request:
push:
branches:
- main
jobs:
validate:
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@v6
- uses: actions/setup-node@v6
with:
node-version: 22
- name: Install pnpm
run: npm install -g pnpm
- uses: actions/cache@v5
with:
path: ~/.local/share/pnpm/store
key: pnpm-store-${{ hashFiles('pnpm-lock.yaml') }}
- run: pnpm install --frozen-lockfile
- run: rm -rf packages/*/dist examples/*/dist
- run: pnpm test
- run: pnpm typecheck
- run: pnpm build
- run: pnpm lint