-
Notifications
You must be signed in to change notification settings - Fork 0
185 lines (154 loc) · 4.31 KB
/
build.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
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
159
160
161
162
163
164
165
166
167
168
169
170
171
172
173
174
175
176
177
178
179
180
181
182
183
184
185
name: Lint, test and deploy
on:
pull_request:
push:
branches:
- main
- test/*
schedule:
- cron: "0 2 * * 0"
workflow_call:
workflow_dispatch:
jobs:
lint:
name: Lint
runs-on: ubuntu-latest
steps:
- name: Git clone repository
uses: actions/checkout@v4
- name: Set up Node.js
uses: actions/setup-node@v4
with:
node-version-file: .nvmrc
cache: npm
- name: Install Node.js dependencies
run: npm ci
- name: Pull LFS source files
uses: ./.github/actions/cache-and-pull-lfs
with:
path: src
- name: Check formatting
run: npm run format:check
- name: Run Astro check
run: npm run check
- name: Lint
run: npm run lint
build-site:
name: Build site
runs-on: ubuntu-latest
steps:
- name: Git clone repository
uses: actions/checkout@v4
- name: Set up Node.js
uses: actions/setup-node@v4
with:
node-version-file: .nvmrc
cache: npm
- name: Install Node.js dependencies
run: npm ci
- name: Pull LFS source files
uses: ./.github/actions/cache-and-pull-lfs
with:
path: src
- name: Restore Astro cache
uses: actions/cache@v4
with:
path: node_modules/.astro
key: ${{ runner.os }}-astro-${{ hashFiles('**/package-lock.json', 'src/photos/*.webp', 'src/photos/*.jpg') }}
- name: Build site
run: |
npm run build
tar -czvf /tmp/site.tar.gz dist/
- name: Upload artefact
uses: actions/upload-artifact@v4
with:
name: site
path: /tmp/site.tar.gz
retention-days: 1
get-playwright-version:
name: Get Playwright version
runs-on: ubuntu-latest
outputs:
version: ${{ steps.get-version.outputs.version }}
steps:
- name: Git clone repository
uses: actions/checkout@v4
- id: get-version
name: Get Playwright version
run: |
echo "version=$(python scripts/get_playwright_version.py)" >> "$GITHUB_OUTPUT"
test-e2e:
name: Run e2e tests
runs-on: ubuntu-latest
needs:
- build-site
- get-playwright-version
container:
image: mcr.microsoft.com/playwright:v${{ needs.get-playwright-version.outputs.version }}
steps:
- name: Install Git LFS
run: |
curl -s https://packagecloud.io/install/repositories/github/git-lfs/script.deb.sh | bash
apt-get install -y git-lfs
- name: Git clone repository
uses: actions/checkout@v4
- name: Set up Node.js
uses: actions/setup-node@v4
with:
node-version-file: .nvmrc
cache: npm
- name: Install Node.js dependencies
run: npm ci
- name: Download built site
uses: actions/download-artifact@v4
with:
name: site
path: /tmp
- name: Unpack site
run: tar -xzf /tmp/site.tar.gz
- name: Mark Git directory as safe
run: |
git config --global --add safe.directory "$(pwd)"
- name: Pull LFS test snapshots
uses: ./.github/actions/cache-and-pull-lfs
with:
path: test/e2e
- name: Run e2e tests
run: npm exec --no -- playwright test
env:
HOME: /root
- name: Upload test results
uses: actions/upload-artifact@v4
if: always()
with:
name: e2e-test-results
path: test/e2e/output
deploy:
name: Deploy
runs-on: ubuntu-latest
permissions:
contents: read
deployments: write
needs:
- build-site
- lint
- test-e2e
steps:
- name: Checkout
uses: actions/checkout@v4
- name: Download built site
uses: actions/download-artifact@v4
with:
name: site
path: /tmp
- name: Unpack site
run: tar -xzf /tmp/site.tar.gz
- name: Publish to Cloudflare Pages
uses: cloudflare/pages-action@v1
with:
apiToken: ${{ secrets.CLOUDFLARE_API_TOKEN }}
accountId: a15c47006c45966652a70d01bf3629a5
projectName: photos-reupen-uk
directory: dist/
gitHubToken: ${{ secrets.GITHUB_TOKEN }}
wranglerVersion: "3"