Skip to content

Chore: update license copyright year to 2026 #753

Chore: update license copyright year to 2026

Chore: update license copyright year to 2026 #753

Workflow file for this run

name: Build Preview Deployment
on:
pull_request:
types: [opened, reopened, synchronize, ready_for_review]
permissions:
contents: read
jobs:
build-preview:
if: ${{ github.event.pull_request.head.repo.full_name != github.repository && github.event.pull_request.draft == false }}
runs-on: ubuntu-latest
name: Build Preview Site
steps:
- name: Checkout
uses: actions/checkout@fbc6f3992d24b796d5a048ff273f7fcc4a7b6c09 # v5.1.0
with:
fetch-depth: 1
persist-credentials: false
- name: Setup pnpm
uses: pnpm/action-setup@0977fd99725f1db4007ccb2928dbb4e90d06cc86 # v6.0.10
- name: Setup Node.js
uses: actions/setup-node@249970729cb0ef3589644e2896645e5dc5ba9c38 # v6.5.0
with:
node-version: 22
cache: pnpm
- name: Install dependencies
run: pnpm install --frozen-lockfile
- name: Build site
run: pnpm run docs:build
env:
CF_PAGES_BRANCH: ${{ github.head_ref }}
- name: Upload build artifact
uses: actions/upload-artifact@043fb46d1a93c77aae656e7c1c64a875d1fc6a0a # v7.0.1
with:
name: preview-build
path: dist/public
include-hidden-files: true
if-no-files-found: error
retention-days: 1