-
Notifications
You must be signed in to change notification settings - Fork 12
54 lines (54 loc) · 2 KB
/
pr-preview.yml
File metadata and controls
54 lines (54 loc) · 2 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
# .github/workflows/preview.yml
name: Deploy PR previews
concurrency:
group: ${{ github.workflow }}-${{ github.ref }}
cancel-in-progress: true
on:
pull_request:
types:
- opened
- reopened
- synchronize
- closed
jobs:
deploy-preview:
runs-on: ubuntu-latest
permissions:
contents: write
pull-requests: write
steps:
- uses: actions/checkout@v6
with:
persist-credentials: false
- uses: actions/setup-node@v6
with:
node-version: "24"
- run: npm install -g npm@latest
if: github.event.action != 'closed'
- name: Install
if: github.event.action != 'closed'
run: |
npm ci
- name: Always preview with the latest browserslist db
if: github.event.action != 'closed'
run: |
npx update-browserslist-db@latest
- name: Build web-component
if: github.event.action != 'closed'
run: |
# create the bundles required for studio-web
npx nx bundle web-component
- name: Build
if: github.event.action != 'closed'
run: |
sed -r -i 's:readalong-studio.mothertongues.org/:readalong-studio.mothertongues.org/pr-preview/pr-${{github.event.number}}/:g' packages/studio-web/src/environments/environment.prod.ts
npx nx build studio-web --base-href=/pr-preview/pr-${{github.event.number}}/ --configuration=production
npx nx build studio-web --base-href=/pr-preview/pr-${{github.event.number}}/ --configuration=production --localize=fr --deleteOutputPath=false
npx nx build studio-web --base-href=/pr-preview/pr-${{github.event.number}}/ --configuration=production --localize=es --deleteOutputPath=false
- name: Publish Deploy Preview 🛫
uses: rossjrw/pr-preview-action@8ff09e486b4c23709012eedd3b42e9f0b95dd0c5 # v1.6.3
with:
source-dir: dist/packages/studio-web
preview-branch: gh-pages
umbrella-dir: pr-preview
action: auto