-
Notifications
You must be signed in to change notification settings - Fork 6
296 lines (293 loc) · 10.6 KB
/
ci.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
186
187
188
189
190
191
192
193
194
195
196
197
198
199
200
201
202
203
204
205
206
207
208
209
210
211
212
213
214
215
216
217
218
219
220
221
222
223
224
225
226
227
228
229
230
231
232
233
234
235
236
237
238
239
240
241
242
243
244
245
246
247
248
249
250
251
252
253
254
255
256
257
258
259
260
261
262
263
264
265
266
267
268
269
270
271
272
273
274
275
276
277
278
279
280
281
282
283
284
285
286
287
288
289
290
291
292
293
294
295
296
name: Continuous integration
on:
push:
branches:
- main
pull_request: {}
concurrency:
group: ${{ github.workflow }}-${{ github.event.pull_request.number || github.ref }}
cancel-in-progress: true
jobs:
typescript:
name: typescript
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@v4
- name: Read .node-version
id: node-version
run: echo "node-version=$(cat .node-version)" >> $GITHUB_OUTPUT
- name: install node
uses: actions/setup-node@v4
with:
cache: yarn
node-version: ${{ steps.node-version.outputs.node-version }}
- name: yarn install
run: yarn install
- name: graphql-codegen
run: yarn run graphql:codegen
- name: tsc on resulting generated files
run: yarn run tsc --noEmit
vitest:
name: vitest
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@v4
- name: Read .node-version
id: node-version
run: echo "node-version=$(cat .node-version)" >> $GITHUB_OUTPUT
- name: install node
uses: actions/setup-node@v4
with:
cache: yarn
node-version: ${{ steps.node-version.outputs.node-version }}
- name: yarn install
run: yarn install
- name: build
run: COVERAGE=true yarn run test
- name: Publish Test Report
uses: mikepenz/action-junit-report@v5
if: always() # always run even if the previous step fails
with:
check_name: 'Vitest Report'
report_paths: 'test/reports/TEST-*.xml'
- name: Archive HTML test reports
uses: actions/upload-artifact@v4
if: always()
with:
name: vitest-reports
path: test/html_reports/*
- name: Archive coverage report
uses: actions/upload-artifact@v4
if: always()
with:
name: vitest-coverage
path: coverage/*
minitest:
permissions: write-all
name: minitest
runs-on: ubuntu-latest
env:
TEST_DATABASE_URL: postgres://postgres:postgres@localhost/intercode_test
RAILS_ENV: test
services:
postgres:
image: postgres:16
env:
POSTGRES_PASSWORD: postgres
options: >-
--health-cmd pg_isready
--health-interval 10s
--health-timeout 5s
--health-retries 5
ports:
- 5432:5432
steps:
- uses: actions/checkout@v4
- name: Install libvips42
run: sudo apt-get update && sudo apt-get install libvips42
- name: Upgrade postgres client utilities
run: |
sudo sh -c 'echo "deb http://apt.postgresql.org/pub/repos/apt $(lsb_release -cs)-pgdg main" > /etc/apt/sources.list.d/pgdg.list'
wget -qO- https://www.postgresql.org/media/keys/ACCC4CF8.asc | sudo tee /etc/apt/trusted.gpg.d/pgdg.asc &>/dev/null
sudo apt-get update
sudo apt-get install postgresql-client-16 -y
- name: Set up Ruby
uses: ruby/setup-ruby@v1
with:
bundler-cache: true
- name: Database setup
run: bundle exec rails db:create db:migrate
- name: Run tests
run: TERM=xterm-color bundle exec rails test
- name: Publish Test Report
uses: mikepenz/action-junit-report@v5
if: always() # always run even if the previous step fails
with:
check_name: 'Minitest Report'
report_paths: 'test/reports/TEST-*.xml'
- name: Archive HTML test reports
uses: actions/upload-artifact@v4
if: always()
with:
name: minitest-reports
path: test/html_reports/*
- name: Archive coverage report
uses: actions/upload-artifact@v4
if: always()
with:
name: minitest-coverage
path: coverage/*
docker-build:
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@v4
- name: Read .node-version
id: node-version
run: echo "node-version=$(cat .node-version)" >> $GITHUB_OUTPUT
- name: install node
uses: actions/setup-node@v4
with:
cache: yarn
node-version: ${{ steps.node-version.outputs.node-version }}
- name: yarn install
run: yarn install
- name: Log in to registry
run: echo "${{ secrets.GITHUB_TOKEN }}" | docker login ghcr.io -u ${{ github.actor }} --password-stdin
- name: Build frontend bundle
run: yarn run build
- name: Set up Docker Buildx
id: buildx
uses: docker/setup-buildx-action@master
- name: Read .ruby-version
id: ruby-version
run: echo "ruby-version=$(cat .ruby-version)" >> $GITHUB_OUTPUT
- name: Build (and push to registry, if on main)
uses: docker/build-push-action@v6
with:
context: .
push: ${{ github.event_name == 'push' && github.event.ref == 'refs/heads/main' }}
load: ${{ !(github.event_name == 'push' && github.event.ref == 'refs/heads/main') }}
platforms: linux/amd64
target: production
tags: |
ghcr.io/neinteractiveliterature/intercode:${{ github.sha }}
build-args: |
RUBY_VERSION=${{ steps.ruby-version.outputs.ruby-version }}
NODE_VERSION=${{ steps.node-version.outputs.node-version }}
REVISION=${{ github.sha }}
- name: Check that app can boot
run: >
docker run -e DATABASE_URL=postgresql://fakehost/not_a_real_database
-e AWS_S3_BUCKET=fakebucket
ghcr.io/neinteractiveliterature/intercode:${{ github.sha }}
bin/rails runner 'puts "Hello, world!"'
- name: Build assets only (and push to registry, if on main)
uses: docker/build-push-action@v6
if: github.event_name == 'push' && github.event.ref == 'refs/heads/main'
with:
context: .
file: Dockerfile.assets
push: ${{ github.event_name == 'push' && github.event.ref == 'refs/heads/main' }}
platforms: linux/amd64
tags: |
ghcr.io/neinteractiveliterature/intercode-assets:${{ github.sha }}
build-args: |
BASEIMAGE=ghcr.io/neinteractiveliterature/intercode:${{ github.sha }}
doc-site:
name: Build doc site
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@v4
- name: Set up docusaurus cache
uses: actions/cache@v4
with:
path: doc-site/.yarn/.cache/webpack
key: ${{ runner.os }}-doc-site-docusaurus-${{ github.ref }}
restore-keys: |
${{ runner.os }}-doc-site-docusaurus-${{ github.ref }}
${{ runner.os }}-doc-site-docusaurus-
- name: Install libvips42
run: sudo apt-get update && sudo apt-get install libvips42
- name: Read .node-version
id: node-version
run: echo "node-version=$(cat .node-version)" >> $GITHUB_OUTPUT
- name: install node
uses: actions/setup-node@v4
with:
cache: yarn
node-version: ${{ steps.node-version.outputs.node-version }}
- name: Set up Ruby
uses: ruby/setup-ruby@v1
with:
bundler-cache: true
- name: Install dependencies for generating Liquid doc JSON
run: gem install yard toys pry --no-doc
- name: yarn install
run: yarn install
- name: Generate GraphQL schema
run: bin/rails graphql:schema:dump
- name: Generate Liquid doc JSON
run: toys update_liquid_doc_json
- name: Build doc site
run: cd doc-site && yarn run docusaurus graphql-to-doc -f && yarn node liquid-to-doc.js && yarn run build
env:
# docusaurus breaks on Node 17+ if we don't do this
NODE_OPTIONS: --openssl-legacy-provider
- name: Compress built site
if: github.event_name == 'push' && github.event.ref == 'refs/heads/main'
run: tar cfz doc-site.tar.gz ./doc-site/build
- name: Store built site
if: github.event_name == 'push' && github.event.ref == 'refs/heads/main'
uses: actions/upload-artifact@v4
with:
name: doc-site
path: doc-site.tar.gz
coverage-report:
runs-on: ubuntu-latest
if: github.actor != 'dependabot[bot]'
needs:
- vitest
- minitest
steps:
- name: Download Minitest coverage
uses: actions/download-artifact@v4
with:
name: minitest-coverage
path: minitest-coverage
- name: Download Vitest coverage
uses: actions/download-artifact@v4
with:
name: vitest-coverage
path: vitest-coverage
- name: Merge coverage reports
run: npx cobertura-merge -o merged-coverage.xml package1=minitest-coverage/coverage.xml package2=vitest-coverage/cobertura-coverage.xml
- name: Generate Coverage Report
uses: clearlyip/code-coverage-report-action@v5
id: code_coverage_report_action
with:
filename: 'merged-coverage.xml'
fail_on_negative_difference: true
artifact_download_workflow_names: 'ci,cron'
only_list_changed_files: true
- name: Add Coverage PR Comment
if: github.event_name == 'pull_request'
uses: marocchino/sticky-pull-request-comment@v2
with:
recreate: true
path: code-coverage-results.md
update-release-draft:
runs-on: ubuntu-latest
if: github.event_name == 'push' && github.event.ref == 'refs/heads/main'
needs:
- typescript
- vitest
- minitest
- docker-build
- doc-site
outputs:
name: ${{ steps.release-drafter.outputs.name }}
html_url: ${{ steps.release-drafter.outputs.html_url }}
steps:
- uses: release-drafter/release-drafter@v6
id: release-drafter
with:
config-name: release-drafter.yml
env:
GITHUB_TOKEN: ${{ secrets.GITHUB_TOKEN }}
- name: Format Slack post
id: slack-post
run: |
echo "text<<END_OF_SLACK_MESSAGE" >> "$GITHUB_OUTPUT"
echo -e "Draft release ${{ steps.release-drafter.outputs.name }} updated:\n" >> "$GITHUB_OUTPUT"
echo -e "- ${{ join(github.event.commits.*.message, '\n- ') }}\n" >> "$GITHUB_OUTPUT"
echo "To release Intercode to production, visit: ${{ steps.release-drafter.outputs.html_url }}" >> "$GITHUB_OUTPUT"
echo END_OF_SLACK_MESSAGE >> "$GITHUB_OUTPUT"
- name: Post about drafted release to Slack
id: slack
uses: slackapi/[email protected]
with:
method: chat.postMessage
token: ${{ secrets.SLACKTOKEN }}
payload: |
channel: ${{ secrets.SlackCISuccessNotificationChannelID }}
text: ${{ toJson(steps.slack-post.outputs.text) }}