Skip to content

Developer Docs Migration to Docusarus #22

Developer Docs Migration to Docusarus

Developer Docs Migration to Docusarus #22

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 Node.js runtime
uses: actions/setup-node@v4
with:
node-version-file: '.nvmrc'
cache: 'pnpm'
- name: πŸ“¦ Setup pnpm package manager
uses: pnpm/action-setup@v4
with:
run_install: false
- name: Enable Corepack
run: corepack enable
- name: Install pnpm
run: corepack prepare pnpm@9.14.4 --activate
- name: πŸ“š Install project dependencies
run: pnpm install --frozen-lockfile
- name: βœ… Check types
run: pnpm check:type
- name: πŸ—οΈ Build
run: pnpm build