-
Notifications
You must be signed in to change notification settings - Fork 13
189 lines (173 loc) · 5.31 KB
/
tests.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
name: CI
on:
push:
branches: [master]
pull_request:
# Don't bother running if it's just a script or docs change
paths-ignore:
- "bin/**"
- Dockerfile
- "*.sh"
- "*.md"
- AUTHORS
concurrency:
group: ci-${{ github.ref }}
cancel-in-progress: true
env:
MIX_ENV: test
V3_URL: ${{ secrets.V3_URL }}
V3_API_KEY: ${{ secrets.V3_API_KEY }}
jobs:
# Report file changes by extensions
# Used to determine which tests to run
file_changes:
name: File changes
uses: ./.github/workflows/changed-files.yml
with:
# If it's a Dependabot PR, or a push to master, we want to run every test
force: ${{ github.event_name == 'push' || contains(github.head_ref, 'dependabot/hex') || contains(github.head_ref, 'dependabot/npm_and_yarn') }}
build_app:
name: Build app (or restore from cache)
runs-on: ubuntu-latest
needs: file_changes
if: ${{ needs.file_changes.outputs.any }}
steps:
- uses: actions/checkout@v4
- uses: ./.github/actions/build-app
eslintts:
name: Linting / TypeScript
runs-on: ubuntu-latest
needs: file_changes
if: ${{ needs.file_changes.outputs.ts }}
steps:
- uses: actions/checkout@v4
- 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.js }}
steps:
- uses: actions/checkout@v4
- 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.scss }}
steps:
- uses: actions/checkout@v4
- 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.ex }}
steps:
- uses: actions/checkout@v4
- uses: ./.github/actions/setup-all
- run: npm run ci:lint:ex
elixir_unit:
name: Unit tests / Elixir / --exclude wallaby --cover
runs-on: ubuntu-latest
needs: [file_changes, build_app]
if: ${{ needs.file_changes.outputs.ex }}
steps:
- uses: actions/checkout@v4
- uses: ./.github/actions/setup-all
- uses: actions/cache/restore@v3
with:
path: |
_build
apps/site/priv
apps/site/react_renderer/dist/app.js
key: ci-application-cache-${{ github.sha }}
- env:
RECAPTCHA_PUBLIC_KEY: 6LeIxAcTAAAAAJcZVRqyHh71UMIEGNQ_MXjiZKhI
RECAPTCHA_PRIVATE_KEY: 6LeIxAcTAAAAAGG-vFI1TnRWxMZNFuojJ4WifJWe
REACT_BUILD_PATH: apps/site/react_renderer/dist/app.js
run: npm run ci:unit:exunit
- name: Upload coverage artifact
if: ${{ always() && github.event.pull_request }}
uses: actions/upload-artifact@v3
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.js }}
steps:
- uses: actions/checkout@v4
- 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.ts || needs.file_changes.outputs.js }}
steps:
- uses: actions/checkout@v4
- 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.ex }}
steps:
- uses: actions/checkout@v4
- uses: ./.github/actions/setup-all
- uses: mbta/actions/dialyzer@v2
type_typescript:
name: Type checks / TypeScript
runs-on: ubuntu-latest
needs: file_changes
if: ${{ needs.file_changes.outputs.ts }}
steps:
- uses: actions/checkout@v4
- 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.ex }}
steps:
- uses: actions/checkout@v4
- 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.js || needs.file_changes.outputs.ts }}
steps:
- uses: actions/checkout@v4
- uses: ./.github/actions/setup-all
- run: npm run ci:format:ts
elixir_wallaby:
name: Integration tests / Elixir
runs-on: ubuntu-latest
needs: [file_changes, build_app]
if: ${{ needs.file_changes.outputs.any }}
steps:
- uses: actions/checkout@v4
- uses: ./.github/actions/setup-all
- uses: actions/cache/restore@v3
with:
path: |
_build
apps/site/priv
apps/site/react_renderer/dist/app.js
key: ci-application-cache-${{ github.sha }}
- uses: mbta/setup-chromedriver@master
- env:
RECAPTCHA_PUBLIC_KEY: 6LeIxAcTAAAAAJcZVRqyHh71UMIEGNQ_MXjiZKhI
RECAPTCHA_PRIVATE_KEY: 6LeIxAcTAAAAAGG-vFI1TnRWxMZNFuojJ4WifJWe
REACT_BUILD_PATH: apps/site/react_renderer/dist/app.js
run: npm run ci:integration:ex