-
Notifications
You must be signed in to change notification settings - Fork 1
140 lines (132 loc) · 4.03 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
name: CI
on:
push:
branches: [main]
merge_group:
pull_request:
concurrency:
group: ci-${{ github.ref }}
cancel-in-progress: true
jobs:
asdf:
name: ASDF
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@v4
# cache the ASDF directory, using the values from .tool-versions
- name: ASDF cache
id: asdf-cache
uses: actions/cache@v4
with:
path: ~/.asdf
key: ${{ runner.os }}-asdf-v2-${{ hashFiles('.tool-versions') }}
- uses: asdf-vm/actions/install@v3
- name: Install Hex/Rebar
run: |
mix local.rebar --force
mix local.hex --force
- if: always() && steps.asdf-cache.outputs.cache-hit != 'true'
uses: actions/cache/save@v4
with:
key: ${{ steps.asdf-cache.outputs.cache-primary-key }}
path: ~/.asdf
build:
name: Build
runs-on: ubuntu-latest
needs: asdf
steps:
- uses: actions/checkout@v4
- name: ASDF cache
uses: actions/cache@v4
with:
path: ~/.asdf
key: ${{ runner.os }}-asdf-v2-${{ hashFiles('.tool-versions') }}
id: asdf-cache
- uses: mbta/actions/reshim-asdf@v2
# The asdf job should have prepared the cache. Exit if it didn't for some reason.
- run: exit 1
if: steps.asdf-cache.outputs.cache-hit != 'true'
- name: Restore dependencies cache
id: deps-cache
uses: actions/cache@v4
with:
path: deps
key: ${{ runner.os }}-mix-${{ hashFiles('**/mix.lock') }}
restore-keys: ${{ runner.os }}-mix-
- name: Install dependencies (if needed)
if: steps.deps-cache.outputs.cache-hit != 'true'
run: mix deps.get
- name: Compile (warnings as errors)
run: mix compile --force --warnings-as-errors
checks:
name: Code Checks
runs-on: ubuntu-latest
needs: build
steps:
- uses: actions/checkout@v4
- uses: actions/cache@v4
with:
path: ~/.asdf
key: ${{ runner.os }}-asdf-v2-${{ hashFiles('.tool-versions') }}
- uses: mbta/actions/reshim-asdf@v2
- uses: actions/cache@v4
with:
path: deps
key: ${{ runner.os }}-mix-${{ hashFiles('**/mix.lock') }}
- name: Check formatting
run: mix format --check-formatted
- name: Credo
run: mix credo --strict
- name: Sobelow (Security)
run: mix sobelow -i Config.HTTPS,Config.Headers --skip --exit
- uses: mbta/actions/dialyzer@v2
tests:
name: Tests
runs-on: ubuntu-latest
needs: build
steps:
- uses: actions/checkout@v4
with:
lfs: true
- name: Fetch LFS objects
run: git lfs checkout
- uses: actions/cache@v4
with:
path: ~/.asdf
key: ${{ runner.os }}-asdf-v2-${{ hashFiles('.tool-versions') }}
- uses: mbta/actions/reshim-asdf@v2
- uses: actions/cache@v4
with:
path: deps
key: ${{ runner.os }}-mix-${{ hashFiles('**/mix.lock') }}
- name: Run tests
run: mix test --cover
- name: Save PR information
run: |
echo "${{ github.event.pull_request.number }}" > cover/PR_NUMBER
echo "${{ github.event.pull_request.head.sha }}" > cover/PR_SHA
if: github.event.pull_request
- name: Upload coverage artifact
uses: actions/upload-artifact@v4
with:
name: elixir-lcov
path: cover/
standard_js:
name: StandardJS
runs-on: ubuntu-latest
needs: asdf
steps:
- uses: actions/checkout@v4
- uses: actions/cache@v4
with:
path: ~/.asdf
key: ${{ runner.os }}-asdf-v2-${{ hashFiles('.tool-versions') }}
- uses: mbta/actions/reshim-asdf@v2
- uses: actions/cache@v4
with:
path: assets/node_modules
key: ${{ runner.os }}-nodejs-${{ hashFiles('assets/package-lock.json') }}
- run: npm ci
working-directory: assets
- run: npm run standard
working-directory: assets