-
-
Notifications
You must be signed in to change notification settings - Fork 41
39 lines (32 loc) · 948 Bytes
/
Copy pathbuild-preview.yml
File metadata and controls
39 lines (32 loc) · 948 Bytes
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
name: Build Preview Deployment
# cancel in-progress runs on new commits to same PR (github.event.number)
concurrency:
group: ${{ github.workflow }}-${{ github.event.number || github.sha }}
cancel-in-progress: true
on:
pull_request:
types: [opened, synchronize]
jobs:
build-preview:
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@v4
- uses: pnpm/action-setup@v4
- uses: actions/setup-node@v4
with:
node-version: 24.x
cache: pnpm
- name: Install dependencies
run: pnpm install
- name: Build packages
run: pnpm package
- name: Build site
run: pnpm --filter docs build
env:
GITHUB_API_TOKEN: ${{ secrets.GH_API_TOKEN }}
- name: Upload build artifact
uses: actions/upload-artifact@v4
with:
name: preview-build
path: docs/.svelte-kit
include-hidden-files: true