-
Notifications
You must be signed in to change notification settings - Fork 0
78 lines (67 loc) · 2.06 KB
/
Copy pathdeploy.yml
File metadata and controls
78 lines (67 loc) · 2.06 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
name: Deploy to GitHub Pages
# Builds the Astro site and publishes it to GitHub Pages on every push to main.
# Pages "Source" must be set to "GitHub Actions" (Settings → Pages).
# A public/CNAME file points the deployment at the custom domain; once the DNS
# is configured the site goes live at https://mission.managed-code.com.
on:
push:
branches: [main]
workflow_dispatch:
permissions:
contents: read
pages: write
id-token: write
# Allow one concurrent deployment; don't cancel an in-progress publish.
concurrency:
group: pages
cancel-in-progress: false
jobs:
# Gate the deploy on the functional + performance tests (deterministic, fast).
# Visual-regression baselines are platform-specific and checked by the dedicated
# playwright.yml workflow, so they are intentionally NOT part of the deploy gate.
test:
runs-on: ubuntu-latest
container:
image: mcr.microsoft.com/playwright:v1.61.1-jammy
env:
HOME: /root
CI: 'true'
steps:
- name: Checkout
uses: actions/checkout@v7
- name: Install dependencies
run: npm ci
- name: Functional + performance tests (gate)
run: npx playwright test tests/functional.spec.ts tests/perf.spec.ts
build:
needs: test
runs-on: ubuntu-latest
steps:
- name: Checkout
uses: actions/checkout@v7
- name: Setup Node
uses: actions/setup-node@v6
with:
node-version: 22
cache: npm
- name: Install dependencies
run: npm ci
- name: Build (favicons + Astro → dist/)
run: npm run build
env:
NODE_ENV: production
PUBLIC_RECAPTCHA_SITE_KEY: ${{ vars.PUBLIC_RECAPTCHA_SITE_KEY }}
- name: Upload Pages artifact
uses: actions/upload-pages-artifact@v5
with:
path: ./dist
deploy:
needs: build
runs-on: ubuntu-latest
environment:
name: github-pages
url: ${{ steps.deployment.outputs.page_url }}
steps:
- name: Deploy to GitHub Pages
id: deployment
uses: actions/deploy-pages@v5