-
Notifications
You must be signed in to change notification settings - Fork 0
53 lines (50 loc) · 1.33 KB
/
on-pr.yaml
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
name: Deploy PR to Github Pages
on:
merge_group:
pull_request:
branches:
- main
types:
- opened
- reopened
- synchronize
- closed
workflow_dispatch:
concurrency:
group: ${{ github.workflow }}-${{ github.event.pull_request.number || github.ref }}
cancel-in-progress: true
jobs:
build-deploy:
name: Build and Deploy to GitHub Pages
runs-on: ubuntu-latest
timeout-minutes: 10
permissions:
contents: write
pull-requests: write
steps:
- name: Checkout
uses: actions/checkout@v4
with:
fetch-depth: 0
- name: Use Node
uses: actions/setup-node@v4
if: github.event.action != 'closed'
with:
node-version: 22
cache: npm
- name: Install dependencies
if: github.event.action != 'closed'
run: npm ci --ignore-scripts
- name: Build website
if: github.event.action != 'closed'
env:
BASE_URL: /nr-pies/pr-preview/pr-${{ github.event.pull_request.number }}
run: npm run build
- name: Deploy to/Cleanup GitHub Pages
uses: rossjrw/pr-preview-action@v1
if: github.event_name != 'merge_group'
with:
source-dir: ./build
preview-branch: gh-pages
umbrella-dir: pr-preview
action: auto