-
Notifications
You must be signed in to change notification settings - Fork 585
77 lines (72 loc) · 2.33 KB
/
deploy_preview_forks.yml
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
name: Deploy Preview (fork)
on:
pull_request_target:
concurrency:
group: ${{ github.workflow }}-${{ github.ref }}
cancel-in-progress: true
jobs:
vrt-reports:
if: ${{ github.repository != github.event.pull_request.head.repo.full_name }}
uses: ./.github/workflows/vrt-reports.yml
aat-reports:
if: ${{ github.repository != github.event.pull_request.head.repo.full_name }}
uses: ./.github/workflows/aat-reports.yml
build:
# target repository for pull_request is different from source repository
if: ${{ always() && github.repository != github.event.pull_request.head.repo.full_name }}
needs: [vrt-reports, aat-reports]
runs-on: ubuntu-latest
steps:
- name: Checkout repository
uses: actions/checkout@v4
- name: Set up Node.js
uses: actions/setup-node@v4
with:
node-version: 22
cache: 'npm'
- name: Install dependencies
run: npm ci
- name: Build docs preview
run: npm run build:docs:preview
- name: Download VRT reports (All flags enabled)
uses: actions/download-artifact@v4
with:
name: vrt-all-flags
path: docs/public/vrt-all-flags
- name: Download VRT reports (No flags enabled)
uses: actions/download-artifact@v4
with:
name: vrt-no-flag
path: docs/public/vrt-no-flag
- name: Download AAT reports (All flags enabled)
uses: actions/download-artifact@v4
with:
name: axe-all-flags
path: docs/public/aat-all-flags
- name: Download AAT reports (No flags enabled)
uses: actions/download-artifact@v4
with:
name: axe
path: docs/public/aat-no-flag
- uses: actions/upload-pages-artifact@v3
with:
name: github-pages
path: docs/public
deploy-preview:
if: ${{ always() && github.repository != github.event.pull_request.head.repo.full_name }}
needs: build
permissions:
pages: write
id-token: write
environment:
name: github-pages
url: ${{ steps.deployment.outputs.page_url }}
outputs:
deployment_url: ${{ steps.deployment.outputs.page_url }}
runs-on: ubuntu-latest
steps:
- name: Deploy to GitHub Pages
id: deployment
uses: actions/deploy-pages@v4
with:
preview: true