Skip to content

Developer Docs Migration to Docusarus #23

Developer Docs Migration to Docusarus

Developer Docs Migration to Docusarus #23

Workflow file for this run

name: CI
on:
pull_request:
types: [opened, synchronize]
branches:
- main
- preview
concurrency:
group: ${{ github.workflow }}-${{ github.ref }}
cancel-in-progress: true
jobs:
ci:
name: Test
runs-on: ubuntu-latest
timeout-minutes: 15
steps:
- name: 📥 Checkout repository
uses: actions/checkout@v4
with:
fetch-depth: 2
- name: 📦 Setup pnpm package manager
uses: pnpm/action-setup@v4
with:
run_install: false
- name: 🟢 Setup Node.js runtime
uses: actions/setup-node@v4
with:
node-version-file: '.nvmrc'
cache: 'pnpm'
- name: Enable Corepack
run: corepack enable
- name: 📚 Install project dependencies
run: pnpm install --frozen-lockfile
- name: ✅ Check types
run: pnpm check:type
- name: 🏗️ Build
run: pnpm build