-
Notifications
You must be signed in to change notification settings - Fork 1
158 lines (130 loc) · 3.55 KB
/
build-deploy.yml
File metadata and controls
158 lines (130 loc) · 3.55 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
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
# NDX:Try AWS Scenarios - Build and Deploy Pipeline
#
# This workflow:
# 1. Validates scenario schema
# 2. Builds the Eleventy site
# 3. Runs accessibility tests
# 4. Runs Lighthouse CI
# 5. Deploys to GitHub Pages (main branch only)
name: Build and Deploy
on:
push:
branches: [main]
pull_request:
branches: [main]
workflow_dispatch:
# Sets permissions of the GITHUB_TOKEN to allow deployment to GitHub Pages
permissions:
contents: read
pages: write
id-token: write
# Allow only one concurrent deployment
concurrency:
group: "pages"
cancel-in-progress: false
env:
NODE_VERSION: '20'
jobs:
validate-schema:
name: Validate Schema
runs-on: ubuntu-latest
steps:
- name: Checkout repository
uses: actions/checkout@v6
- name: Setup Node.js
uses: actions/setup-node@v6
with:
node-version: ${{ env.NODE_VERSION }}
cache: 'npm'
- name: Install dependencies
run: npm ci
- name: Validate scenarios.yaml schema
run: npm run validate:schema
build:
name: Build Site
runs-on: ubuntu-latest
needs: validate-schema
steps:
- name: Checkout repository
uses: actions/checkout@v6
- name: Setup Node.js
uses: actions/setup-node@v6
with:
node-version: ${{ env.NODE_VERSION }}
cache: 'npm'
- name: Install dependencies
run: npm ci
- name: Build Eleventy site
run: npm run build
env:
GITHUB_PAGES_URL: https://aws.try.ndx.digital.cabinet-office.gov.uk
- name: Upload build artifact
uses: actions/upload-artifact@v6
with:
name: site-build
path: _site
retention-days: 1
- name: Upload Pages artifact
if: github.ref == 'refs/heads/main'
uses: actions/upload-pages-artifact@v4
with:
path: _site
accessibility:
name: Accessibility Tests
runs-on: ubuntu-latest
needs: build
steps:
- name: Checkout repository
uses: actions/checkout@v6
- name: Setup Node.js
uses: actions/setup-node@v6
with:
node-version: ${{ env.NODE_VERSION }}
cache: 'npm'
- name: Install dependencies
run: npm ci
- name: Download build artifact
uses: actions/download-artifact@v7
with:
name: site-build
path: _site
- name: Install pa11y-ci
run: npm install -g pa11y-ci
- name: Start local server
run: npx http-server _site -p 8080 &
- name: Wait for server
run: sleep 5
- name: Run pa11y accessibility tests
run: |
pa11y-ci --config .pa11yci.json || echo "::warning::Some accessibility issues found"
lighthouse:
name: Lighthouse CI
runs-on: ubuntu-latest
needs: build
steps:
- name: Checkout repository
uses: actions/checkout@v6
- name: Setup Node.js
uses: actions/setup-node@v6
with:
node-version: ${{ env.NODE_VERSION }}
cache: 'npm'
- name: Install dependencies
run: npm ci
- name: Download build artifact
uses: actions/download-artifact@v7
with:
name: site-build
path: _site
deploy:
name: Deploy to GitHub Pages
runs-on: ubuntu-latest
needs: [build]
if: github.ref == 'refs/heads/main'
environment:
name: github-pages
url: ${{ steps.deployment.outputs.page_url }}
steps:
- name: Deploy to GitHub Pages
id: deployment
uses: actions/deploy-pages@v4