Skip to content

Update setup_mac.md #320

Update setup_mac.md

Update setup_mac.md #320

Workflow file for this run

name: 🏗️ CI
on:
push:
branches:
- gh-pages
paths-ignore:
- README.md
- LICENSE.md
pull_request:
branches:
- gh-pages
paths-ignore:
- README.md
- LICENSE.md
# Allows you to run this workflow manually from the Actions tab
workflow_dispatch:
jobs:
build:
name: 🏗️ Build (node - ${{ matrix.node }})
runs-on: ubuntu-latest
strategy:
matrix:
node: [20.x, 21.x]
steps:
- name: 🛎️ Checkout
uses: actions/checkout@v4
with:
fetch-depth: 0
- name: 🟧 Setup pnpm
uses: pnpm/action-setup@v4
- name: ❇️ Setup Node.js ${{ matrix.node }}
uses: actions/setup-node@v4
timeout-minutes: 5
with:
cache: pnpm
node-version: ${{ matrix.node }}
- name: 📦 Install dependencies
env:
PNPM_FLAGS: --frozen-lockfile --color=always
run: pnpm i ${{ env.PNPM_FLAGS }}
- name: ⚡️ Build site with VitePress
run: pnpm book:build