-
Notifications
You must be signed in to change notification settings - Fork 16
259 lines (240 loc) · 8.92 KB
/
Copy pathtests.yml
File metadata and controls
259 lines (240 loc) · 8.92 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
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
name: CI
on:
push:
branches: [main]
pull_request:
concurrency:
group: ci-${{ github.ref }}
cancel-in-progress: true
env:
MIX_ENV: test
MBTA_API_BASE_URL: ${{ secrets.MBTA_API_BASE_URL }}
MBTA_API_KEY: ${{ secrets.MBTA_API_KEY }}
permissions:
contents: read
jobs:
file_changes:
runs-on: ubuntu-latest
# Skip this workflow if the commit message contains "AUTOMATED TRANSLATIONS"
if: ${{ !contains(github.event.head_commit.message, 'AUTOMATED TRANSLATIONS') }}
outputs:
ts: ${{ steps.changes.outputs.ts == 'true' }}
js: ${{ steps.changes.outputs.js == 'true' }}
ex: ${{ steps.changes.outputs.ex == 'true' }}
scss: ${{ steps.changes.outputs.scss == 'true' }}
run_all: ${{ steps.set_run_all.outputs.run_all == 'true' }}
steps:
- uses: actions/checkout@d23441a48e516b6c34aea4fa41551a30e30af803 # v6.1.0
with:
persist-credentials: false
- id: set_run_all
run: echo "run_all=${{ github.event_name == 'push' || contains(github.head_ref, 'dependabot/') }}" >> $GITHUB_OUTPUT
- uses: dorny/paths-filter@7b450fff21473bca461d4b92ce414b9d0420d706 # v4.0.2
id: changes
with:
filters: |
ts:
- 'assets/ts/**'
js:
- 'assets/js/**'
ex:
- '**.ex'
- '**.exs'
- '**.eex'
- '**.heex'
scss:
- 'assets/css/**.scss'
build_image:
name: Build Docker image
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@d23441a48e516b6c34aea4fa41551a30e30af803 # v6.1.0
with:
persist-credentials: false
- run: docker build .
eslintts:
name: Linting / TypeScript
runs-on: ubuntu-latest
needs: file_changes
if: ${{ needs.file_changes.outputs.run_all == 'true' || needs.file_changes.outputs.ts == 'true' }}
steps:
- uses: actions/checkout@d23441a48e516b6c34aea4fa41551a30e30af803 # v6.1.0
with:
persist-credentials: false
- uses: ./.github/actions/setup-all
- run: npm run ci:lint:ts
jslint:
name: Linting / JavaScript
runs-on: ubuntu-latest
needs: file_changes
if: ${{ needs.file_changes.outputs.run_all == 'true' || needs.file_changes.outputs.js == 'true' }}
steps:
- uses: actions/checkout@d23441a48e516b6c34aea4fa41551a30e30af803 # v6.1.0
with:
persist-credentials: false
- uses: ./.github/actions/setup-all
- run: npm run ci:lint:js
stylelint:
name: Linting / CSS
runs-on: ubuntu-latest
needs: file_changes
if: ${{ needs.file_changes.outputs.run_all == 'true' || needs.file_changes.outputs.scss == 'true' }}
steps:
- uses: actions/checkout@d23441a48e516b6c34aea4fa41551a30e30af803 # v6.1.0
with:
persist-credentials: false
- uses: ./.github/actions/setup-all
- run: npm run ci:lint:scss
elixirlint:
name: Linting / Elixir
runs-on: ubuntu-latest
needs: file_changes
if: ${{ (needs.file_changes.outputs.run_all == 'true' || needs.file_changes.outputs.ex == 'true') && github.event_name == 'pull_request' }}
steps:
- uses: actions/checkout@d23441a48e516b6c34aea4fa41551a30e30af803 # v6.1.0
with:
persist-credentials: false
- uses: ./.github/actions/setup-all
- run: git fetch origin main:main
- run: npm run ci:lint:ex
zizmor:
name: Security / Zizmor
runs-on: ubuntu-latest
steps:
- name: Checkout repository
uses: actions/checkout@d23441a48e516b6c34aea4fa41551a30e30af803 # v6.1.0
with:
persist-credentials: false
- name: Run zizmor
uses: zizmorcore/zizmor-action@6fc4b006235f201fdab3722e17240ab420d580e5 # v0.6.1
with:
advanced-security: false
build_app:
name: Build application and assets
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@d23441a48e516b6c34aea4fa41551a30e30af803 # v6.1.0
with:
persist-credentials: false
- uses: ./.github/actions/setup-all
- name: Cache _build
uses: actions/cache@caa296126883cff596d87d8935842f9db880ef25 # v5.1.0
with:
path: |
_build
priv
key: ci-application-cache-${{ github.sha }}
- run: | # zizmor: ignore[adhoc-packages] Zizmor is incorrectly pattern-matching the npm command as something like npm install foo@1.0, which would be an adhoc package installation worth avoiding
npm install --prefix assets
- run: npm --prefix assets run webpack:build
- run: mix compile --all-warnings
elixir_unit:
name: Unit tests / Elixir / mix coveralls.html
runs-on: ubuntu-latest
needs: [file_changes, build_app]
if: ${{ needs.file_changes.outputs.run_all == 'true' || needs.file_changes.outputs.ex == 'true' }}
steps:
- uses: actions/checkout@d23441a48e516b6c34aea4fa41551a30e30af803 # v6.1.0
with:
persist-credentials: false
- uses: ./.github/actions/setup-all
- uses: actions/cache/restore@caa296126883cff596d87d8935842f9db880ef25 # v5.1.0
with:
path: |
_build
priv
key: ci-application-cache-${{ github.sha }}
restore-keys: |
ci-application-cache-
- run: npm run ci:unit:exunit
- name: Upload coverage artifact
if: ${{ always() }}
uses: actions/upload-artifact@043fb46d1a93c77aae656e7c1c64a875d1fc6a0a # v7.0.1
with:
name: Elixir test coverage report
path: cover/
js_unit_1:
name: Unit tests / JavaScript / Mocha
runs-on: ubuntu-latest
needs: file_changes
if: ${{ needs.file_changes.outputs.run_all == 'true' || needs.file_changes.outputs.js == 'true' }}
steps:
- uses: actions/checkout@d23441a48e516b6c34aea4fa41551a30e30af803 # v6.1.0
with:
persist-credentials: false
- uses: ./.github/actions/setup-all
- run: npm run ci:unit:mocha
js_unit_2:
name: Unit tests / JavaScript & TypeScript / Jest
runs-on: ubuntu-latest
needs: file_changes
if: ${{ needs.file_changes.outputs.run_all == 'true' || needs.file_changes.outputs.ts == 'true' || needs.file_changes.outputs.js == 'true' }}
steps:
- uses: actions/checkout@d23441a48e516b6c34aea4fa41551a30e30af803 # v6.1.0
with:
persist-credentials: false
- uses: ./.github/actions/setup-all
- run: TZ="America/New_York" npm run ci:unit:jest
type_dialyzer:
name: Type checks / Elixir
runs-on: ubuntu-latest
needs: file_changes
if: ${{ needs.file_changes.outputs.run_all == 'true' || needs.file_changes.outputs.ex == 'true' }}
steps:
- uses: actions/checkout@d23441a48e516b6c34aea4fa41551a30e30af803 # v6.1.0
with:
persist-credentials: false
- uses: ./.github/actions/setup-all
- uses: mbta/actions/dialyzer@d37877022d4ae12e96663d2e0a970a5214a2e232 # v2.20
type_typescript:
name: Type checks / TypeScript
runs-on: ubuntu-latest
needs: file_changes
if: ${{ needs.file_changes.outputs.run_all == 'true' || needs.file_changes.outputs.ts == 'true' }}
steps:
- uses: actions/checkout@d23441a48e516b6c34aea4fa41551a30e30af803 # v6.1.0
with:
persist-credentials: false
- uses: ./.github/actions/setup-all
- run: npm run ci:types:ts
elixir_format_check:
name: Formatting / Elixir
runs-on: ubuntu-latest
needs: file_changes
if: ${{ needs.file_changes.outputs.run_all == 'true' || needs.file_changes.outputs.ex == 'true' }}
steps:
- uses: actions/checkout@d23441a48e516b6c34aea4fa41551a30e30af803 # v6.1.0
with:
persist-credentials: false
- uses: ./.github/actions/setup-all
- run: npm run ci:format:ex
js_format_check:
name: Formatting / JavaScript & TypeScript
runs-on: ubuntu-latest
needs: file_changes
if: ${{ needs.file_changes.outputs.run_all == 'true' || needs.file_changes.outputs.js == 'true' || needs.file_changes.outputs.ts == 'true' }}
steps:
- uses: actions/checkout@d23441a48e516b6c34aea4fa41551a30e30af803 # v6.1.0
with:
persist-credentials: false
- uses: ./.github/actions/setup-all
- run: npm run ci:format:ts
check_translations:
name: Translations / Check
runs-on: ubuntu-latest
needs: [file_changes, build_app]
if: ${{ needs.file_changes.outputs.run_all == 'true' || needs.file_changes.outputs.ex == 'true' }}
steps:
- uses: actions/checkout@d23441a48e516b6c34aea4fa41551a30e30af803 # v6.1.0
with:
persist-credentials: false
- uses: ./.github/actions/setup-all
- uses: actions/cache/restore@caa296126883cff596d87d8935842f9db880ef25 # v5.1.0
with:
path: |
_build
priv
key: ci-application-cache-${{ github.sha }}
restore-keys: |
ci-application-cache-
- run: mix gettext.extract --check-up-to-date --verbose