-
Notifications
You must be signed in to change notification settings - Fork 0
83 lines (78 loc) · 2.71 KB
/
Copy pathwebsite.yaml
File metadata and controls
83 lines (78 loc) · 2.71 KB
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
name: Website
on:
pull_request:
paths:
- "website/**"
- "docs/**"
- "package.json"
- "pnpm-lock.yaml"
- "pnpm-workspace.yaml"
- ".github/workflows/website.yaml"
push:
branches: [main]
paths:
- "website/**"
- "docs/**"
- "package.json"
- "pnpm-lock.yaml"
- "pnpm-workspace.yaml"
- ".github/workflows/website.yaml"
workflow_dispatch:
permissions:
contents: read
concurrency:
# One deploy at a time on main, never cancelled mid-publish; PR builds supersede each other.
group: website-${{ github.event_name == 'pull_request' && github.ref || 'pages' }}
cancel-in-progress: ${{ github.event_name == 'pull_request' }}
jobs:
build:
runs-on: ubuntu-latest
timeout-minutes: 15
steps:
- name: Check out source
uses: actions/checkout@3d3c42e5aac5ba805825da76410c181273ba90b1 # v7.0.1
with:
persist-credentials: false
# Full history so Starlight's "last updated" dates come from git.
fetch-depth: 0
- name: Set up pnpm via corepack
# Same setup as lint.yaml: pnpm has to be on PATH before setup-node's `cache: pnpm` runs.
# withastro/action is not used because it installs pnpm its own way, bypassing the
# corepack-pinned pnpm 11 from package.json's packageManager field.
run: |
mkdir -p "$RUNNER_TEMP/corepack"
corepack enable --install-directory "$RUNNER_TEMP/corepack" pnpm
echo "$RUNNER_TEMP/corepack" >> "$GITHUB_PATH"
corepack prepare --activate
- name: Set up Node.js
uses: actions/setup-node@820762786026740c76f36085b0efc47a31fe5020 # v7.0.0
with:
node-version: 24
cache: pnpm
- name: Install dependencies
run: pnpm install --frozen-lockfile --ignore-scripts
- name: Type-check website
run: pnpm --filter @appduct/website typecheck
- name: Build website
# Also validates every internal docs link (starlight-links-validator) and fails on a broken one.
run: pnpm --filter @appduct/website build
- name: Upload Pages artifact
if: github.event_name != 'pull_request'
uses: actions/upload-pages-artifact@fc324d3547104276b827a68afc52ff2a11cc49c9 # v5.0.0
with:
path: website/dist
deploy:
if: github.event_name != 'pull_request'
needs: build
runs-on: ubuntu-latest
timeout-minutes: 10
permissions:
pages: write
id-token: write
environment:
name: github-pages
url: ${{ steps.deployment.outputs.page_url }}
steps:
- name: Deploy to GitHub Pages
id: deployment
uses: actions/deploy-pages@368f82528645a54fb793d4d04e342629a3f51346 # v5.0.1