-
Notifications
You must be signed in to change notification settings - Fork 0
312 lines (250 loc) ยท 8.41 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
297
298
299
300
301
302
303
304
305
306
307
308
309
310
311
312
name: Continuous Integration
on:
push:
branches:
- develop
- main
pull_request:
branches:
- '*'
types:
- opened
- reopened
- synchronize
# First three are default, this one is added to run CI on PRs that are moved from draft to ready for review
# https://docs.github.com/en/actions/using-workflows/events-that-trigger-workflows#pull_request
- ready_for_review
# Avoid concurrency on the same branch to prevent parallel runs
# Skip this for develop and main branches, since we don't want to break releases
concurrency:
group: ${{ (github.ref == 'refs/heads/main' || github.ref == 'refs/heads/develop') && format('no-concurrency-{0}', github.run_id) || format('{0}-{1}', github.workflow, github.ref) }}
cancel-in-progress: ${{ github.ref != 'refs/heads/main' && github.ref != 'refs/heads/develop' }}
env:
RUBY_YJIT_ENABLE: 1
jobs:
## Uncomment this to test the workflows and see CI context
# CI-Context:
# name: CI Context check
#
# runs-on: ubuntu-latest
#
# steps:
# - name: Dump context
# env:
# GITHUB_CONTEXT: ${{ toJson(github) }}
# JOB_CONTEXT: ${{ toJson(job) }}
# STEPS_CONTEXT: ${{ toJson(steps) }}
# run: |
# echo "$GITHUB_CONTEXT"
# echo "$JOB_CONTEXT"
# echo "$STEPS_CONTEXT"
ci-eligibility-check:
name: CI Eligibility Check
runs-on: ubuntu-latest
outputs:
eligible: ${{ steps.check.outputs.eligible }}
# Important conditions, since all following jobs depend on this job and do not check for these conditions again
# Run for any push event or PR but skip draft PRs
steps:
- name: Should run CI?
id: check
run: |
if [[ "${{ github.event_name }}" == "push" || \
( "${{ github.event_name }}" == "pull_request" && \
"${{ github.event.pull_request.draft }}" == "false" ) ]]; then
echo "eligible=true" >> $GITHUB_OUTPUT
else
echo "eligible=false" >> $GITHUB_OUTPUT
fi
rubocop-linters:
name: Rubocop Linters
runs-on: ubuntu-latest
needs: ci-eligibility-check
if: ${{ needs.ci-eligibility-check.outputs.eligible == 'true' }}
steps:
- name: Checkout repository ๐
uses: actions/checkout@v4
with:
show-progress: false
- name: Setup Ruby and install gems โ๏ธ
uses: ruby/setup-ruby@v1
with:
ruby-version: .ruby-version
bundler-cache: true
- name: Run rubocop linters ๐งน
run: |
bundle exec rubocop --parallel
non-ruby-linters:
name: Non-Ruby Linters
runs-on: ubuntu-latest
needs: ci-eligibility-check
if: ${{ needs.ci-eligibility-check.outputs.eligible == 'true' }}
steps:
- name: Checkout repository ๐๏ธ
uses: actions/checkout@v4
with:
show-progress: false
- name: Setup Node.js โ๏ธ
uses: actions/setup-node@v4
with:
node-version-file: '.nvmrc'
cache: 'npm'
- name: Install NPM โ๏ธ
run: npm install -g "npm@$(jq -r .engines.npm ./package.json)"
- name: Print Node.js and NPM context ๐จ๏ธ
run: |
echo "Expected Node.js version: $(jq -r .engines.node ./package.json)"
echo "Actual Node.js version: $(node -v)"
echo "Expected NPM version: $(jq -r .engines.npm ./package.json)"
echo "Actual NPM version: $(npm -v)"
- name: Install dependencies โ๏ธ
run: npm ci --ignore-scripts
- name: Run linter ๐งน
run: npm run lint
# There have been false positives like unused method for API::V1::EventsController#index action
# rails-best-practices:
# name: Rails best practices
# runs-on: ubuntu-latest
# needs: ci-eligibility-check
# if: ${{ needs.ci-eligibility-check.outputs.eligible == 'true' }}
# steps:
# - name: Checkout repository ๐
# uses: actions/checkout@v4
# with:
# show-progress: false
# - name: Setup Ruby and install gems โ๏ธ
# uses: ruby/setup-ruby@v1
# with:
# ruby-version: .ruby-version
# bundler-cache: true
# - name: Rails Best Practices
# run: bundle exec rails_best_practices
code-smell-detector:
name: Code smell detector
runs-on: ubuntu-latest
needs: ci-eligibility-check
if: ${{ needs.ci-eligibility-check.outputs.eligible == 'true' }}
steps:
- name: Checkout repository ๐
uses: actions/checkout@v4
with:
show-progress: false
- name: Setup Ruby and install gems โ๏ธ
uses: ruby/setup-ruby@v1
with:
ruby-version: .ruby-version
bundler-cache: true
- name: Run code smell detector ๐งน
run: bundle exec reek .
brakeman:
name: Brakeman
runs-on: ubuntu-latest
needs: ci-eligibility-check
if: ${{ needs.ci-eligibility-check.outputs.eligible == 'true' }}
steps:
- name: Checkout repository ๐
uses: actions/checkout@v4
with:
show-progress: false
- name: Setup Ruby and install gems โ๏ธ
uses: ruby/setup-ruby@v1
with:
ruby-version: .ruby-version
bundler-cache: true
- name: Run brakeman ๐งน
run: bundle exec brakeman -A --no-pager
detect-unused-routes:
name: Detect unused routes
runs-on: ubuntu-latest
needs: ci-eligibility-check
if: ${{ needs.ci-eligibility-check.outputs.eligible == 'true' }}
steps:
- name: Checkout repository ๐
uses: actions/checkout@v4
with:
show-progress: false
- name: Setup Ruby and install gems โ๏ธ
uses: ruby/setup-ruby@v1
with:
ruby-version: .ruby-version
bundler-cache: true
- name: Run unused routes detector ๐งน
run: bundle exec rake traceroute
unit-tests:
name: Unit tests
runs-on: ubuntu-latest
needs:
- rubocop-linters
- non-ruby-linters
# - rails-best-practices
- code-smell-detector
- detect-unused-routes
- brakeman
services:
redis:
image: redis
options: >-
--health-cmd "redis-cli ping"
--health-interval 10s
--health-timeout 5s
--health-retries 5
ports:
- 6379:6379
postgres:
image: postgres:16-alpine
ports:
- 5432:5432
env:
POSTGRES_USER: postgres
POSTGRES_PASSWORD: postgres
POSTGRESQL_FSYNC: off
options: >-
--health-cmd "pg_isready -U postgres"
--health-interval 10s
--health-timeout 5s
--health-retries 5
steps:
- name: Install dependent libraries โ๏ธ
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 --quiet -O - https://www.postgresql.org/media/keys/ACCC4CF8.asc | sudo apt-key add -
sudo apt update
sudo apt-get install -y postgresql-client-16 libpq-dev
- name: Display openssl versions
run: dpkg -l | grep ssl
- name: Checkout repository ๐
uses: actions/checkout@v4
with:
show-progress: false
- name: Setup Ruby and install gems โ๏ธ
uses: ruby/setup-ruby@v1
with:
ruby-version: .ruby-version
bundler-cache: true
- name: Setup DB ๐ฟ
run: |
bundle exec rake db:create
bundle exec rake db:schema:load
env:
RAILS_ENV: test
DATABASE_URL: 'postgresql://postgres:postgres@localhost/event_radar_test'
- name: Enable db reset test
run: |
mv spec/db_reset spec/db_reset_spec.rb
- name: Run db reset test
run: |
bundle exec rspec spec/db_reset_spec.rb
env:
RAILS_ENV: test
DATABASE_URL: 'postgresql://postgres:postgres@localhost/event_radar_test'
- name: Disable db reset test
run: |
mv spec/db_reset_spec.rb spec/db_reset_spec
- name: Run RSpec ๐งช
run: |
bundle exec rspec
env:
DATABASE_URL: 'postgresql://postgres:postgres@localhost/event_radar_test'
REDIS_URL: 'redis://localhost:6379'
RAILS_ENV: test
VCR_CONSISTENCY_CHECK: true