Skip to content

v1.0.0

v1.0.0 #1

name: Build Preview Deployment
concurrency:
group: ${{ github.workflow }}-${{ github.event.number || github.sha }}
cancel-in-progress: true
on:
pull_request:
types: [opened, synchronize]
paths:
- 'docs/**'
jobs:
build-preview:
runs-on: macos-latest
defaults:
run:
working-directory: docs
steps:
- uses: actions/checkout@v4
- uses: actions/setup-node@v4
with:
node-version: 22
cache: npm
- name: Install dependencies
run: npm install
- name: Build site
run: npm run build
- name: Upload build artifact
uses: actions/upload-artifact@v4
with:
name: preview-build
path: build
include-hidden-files: true