Skip to content

Update GitHub actions versions #250

Update GitHub actions versions

Update GitHub actions versions #250

Workflow file for this run

name: Build docs
on:
pull_request:
branches:
- main
jobs:
build:
name: Build docs website
runs-on: ubuntu-latest
steps:
- name: Checkout repository
uses: actions/checkout@v4
- name: Install pnpm
uses: pnpm/action-setup@v3
with:
version: 9
- name: Setup node
uses: actions/setup-node@v4
with:
node-version: 20
cache: 'pnpm'
- name: Install dependencies and build
run: pnpm install --frozen-lockfile
- name: Build docs website
run: (cd website && pnpm build)