-
Notifications
You must be signed in to change notification settings - Fork 13
164 lines (149 loc) · 4.51 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
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') }}
eslintts:
name: Linting / TypeScript
runs-on: ubuntu-20.04
needs: file_changes
if: ${{ needs.file_changes.outputs.ts }}
steps:
- uses: actions/checkout@v3
- uses: ./.github/actions/setup-all
- run: npm run ci:lint:ts
jslint:
name: Linting / JavaScript
runs-on: ubuntu-20.04
needs: file_changes
if: ${{ needs.file_changes.outputs.js }}
steps:
- uses: actions/checkout@v3
- uses: ./.github/actions/setup-all
- run: npm run ci:lint:js
stylelint:
name: Linting / CSS
runs-on: ubuntu-20.04
needs: file_changes
if: ${{ needs.file_changes.outputs.scss }}
steps:
- uses: actions/checkout@v3
- uses: ./.github/actions/setup-all
- run: npm run ci:lint:scss
elixirlint:
name: Linting / Elixir
runs-on: ubuntu-20.04
needs: file_changes
if: ${{ needs.file_changes.outputs.ex }}
steps:
- uses: actions/checkout@v3
- uses: ./.github/actions/setup-all
- run: npm run ci:lint:ex
elixir_unit:
name: Unit tests / Elixir / --exclude wallaby --cover
runs-on: ubuntu-20.04
needs: file_changes
if: ${{ needs.file_changes.outputs.ex }}
steps:
- uses: actions/checkout@v3
- uses: ./.github/actions/build-app
- env:
RECAPTCHA_PUBLIC_KEY: 6LeIxAcTAAAAAJcZVRqyHh71UMIEGNQ_MXjiZKhI
RECAPTCHA_PRIVATE_KEY: 6LeIxAcTAAAAAGG-vFI1TnRWxMZNFuojJ4WifJWe
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-20.04
needs: file_changes
if: ${{ needs.file_changes.outputs.js }}
steps:
- uses: actions/checkout@v3
- uses: ./.github/actions/setup-all
- run: npm run ci:unit:mocha
js_unit_2:
name: Unit tests / JavaScript & TypeScript / Jest
runs-on: ubuntu-20.04
needs: file_changes
if: ${{ needs.file_changes.outputs.ts || needs.file_changes.outputs.js }}
steps:
- uses: actions/checkout@v3
- uses: ./.github/actions/build-app
- run: TZ="America/New_York" npm run ci:unit:jest
type_dialyzer:
name: Type checks / Elixir
runs-on: ubuntu-20.04
needs: file_changes
if: ${{ needs.file_changes.outputs.ex }}
steps:
- uses: actions/checkout@v3
- uses: ./.github/actions/setup-all
- uses: mbta/actions/dialyzer@v1
type_typescript:
name: Type checks / TypeScript
runs-on: ubuntu-20.04
needs: file_changes
if: ${{ needs.file_changes.outputs.ts }}
steps:
- uses: actions/checkout@v3
- uses: ./.github/actions/setup-all
- run: npm run ci:types:ts
elixir_format_check:
name: Formatting / Elixir
runs-on: ubuntu-20.04
needs: file_changes
if: ${{ needs.file_changes.outputs.ex }}
steps:
- uses: actions/checkout@v3
- uses: ./.github/actions/setup-all
- run: npm run ci:format:ex
js_format_check:
name: Formatting / JavaScript & TypeScript
runs-on: ubuntu-20.04
needs: file_changes
if: ${{ needs.file_changes.outputs.js || needs.file_changes.outputs.ts }}
steps:
- uses: actions/checkout@v3
- uses: ./.github/actions/setup-all
- run: npm run ci:format:ts
elixir_wallaby:
name: Integration tests / Elixir
runs-on: ubuntu-20.04
needs: file_changes
if: ${{ needs.file_changes.outputs.ex }}
steps:
- uses: actions/checkout@v3
- uses: ./.github/actions/build-app
- uses: mbta/setup-chromedriver@master
- env:
RECAPTCHA_PUBLIC_KEY: 6LeIxAcTAAAAAJcZVRqyHh71UMIEGNQ_MXjiZKhI
RECAPTCHA_PRIVATE_KEY: 6LeIxAcTAAAAAGG-vFI1TnRWxMZNFuojJ4WifJWe
run: npm run ci:integration:ex