-
Notifications
You must be signed in to change notification settings - Fork 0
209 lines (172 loc) · 5.48 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
name: CI
on:
pull_request:
push:
branches:
- develop
- main
# 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"
rubocop-linters:
name: Rubocop Linters
runs-on: ubuntu-latest
# 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
if: >-
${{
github.event_name == 'push' ||
(github.event_name == 'pull_request' && github.event.pull_request.draft == false)
}}
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
# 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
if: >-
${{
github.event_name == 'push' ||
(github.event_name == 'pull_request' && github.event.pull_request.draft == false)
}}
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
rails-best-practices:
name: Rails best practices
runs-on: ubuntu-latest
# 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
if: >-
${{
github.event_name == 'push' ||
(github.event_name == 'pull_request' && github.event.pull_request.draft == false)
}}
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
unit-tests:
name: Unit tests
runs-on: ubuntu-latest
needs:
- rubocop-linters
- non-ruby-linters
- rails-best-practices
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
POSTGRES_DB: event_radar_test
POSTGRESQL_FSYNC: off
options: >-
--health-cmd "pg_isready -U postgres"
--health-interval 10s
--health-timeout 5s
--health-retries 5
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: Setup DB 💿
run: |
bundle exec rake db:create
bundle exec rake db:schema:load
env:
RAILS_ENV: 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
- name: Disable db reset test
run: |
mv spec/db_reset_spec.rb spec/db_reset_spec
- name: Run RSpec 🧪
run: |
bundle exec rspec
env:
RAILS_ENV: test
VCR_CONSISTENCY_CHECK: true