-
Notifications
You must be signed in to change notification settings - Fork 0
156 lines (124 loc) · 4.11 KB
/
main.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
name: Build/test/deploy
on:
workflow_dispatch:
push:
branches: [main]
pull_request:
branches: [main]
jobs:
run-quality-checks:
name: 📋 Run quality checks
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@v4
- name: Restore node_modules from cache
id: cache-node-modules
uses: actions/cache@v3
with:
path: node_modules
key: v1-${{ runner.os }}-${{ hashFiles('yarn.lock') }}
- name: Install NPM packages
if: steps.cache-node-modules.outputs.cache-hit != 'true'
run: yarn install --frozen-lockfile
- name: Prettier
run: yarn prettier:check
- name: Run linters
run: yarn lint
- name: Run type check
run: yarn tsc
run-tests:
name: 🧪 Run tests
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@v4
with:
fetch-depth: 0
- name: Restore node_modules from cache
id: cache-node-modules
uses: actions/cache@v3
with:
path: node_modules
key: v1-${{ runner.os }}-${{ hashFiles('yarn.lock') }}
- name: Install NPM packages
if: steps.cache-node-modules.outputs.cache-hit != 'true'
run: yarn install --frozen-lockfile
- name: Run all tests
run: yarn test
run-stryker:
name: 👽 Run stryker
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@v4
with:
fetch-depth: 0
- name: Restore node_modules from cache
id: cache-node-modules
uses: actions/cache@v3
with:
path: node_modules
key: v1-${{ runner.os }}-${{ hashFiles('yarn.lock') }}
- name: Install NPM packages
if: steps.cache-node-modules.outputs.cache-hit != 'true'
run: yarn install --frozen-lockfile
- name: Run mutation tests
run: yarn stryker
- name: Upload test report artifacts
uses: actions/upload-artifact@v3
if: always()
with:
name: test-reports
path: build/reports
deploy:
name: 🛳 Deploy Stack via CDK
needs: [run-tests, run-quality-checks]
runs-on: ubuntu-latest
if: ${{ github.event_name == 'workflow_dispatch' || (github.event_name == 'push' && github.event.ref == 'refs/heads/main') }}
steps:
- uses: actions/checkout@v4
- name: Restore node_modules from cache
id: cache-node-modules
uses: actions/cache@v3
with:
path: node_modules
key: v1-${{ runner.os }}-${{ hashFiles('yarn.lock') }}
- name: Install NPM packages
if: steps.cache-node-modules.outputs.cache-hit != 'true'
run: yarn install --frozen-lockfile
- name: Configure AWS credentials
uses: aws-actions/configure-aws-credentials@v4.0.1
with:
aws-access-key-id: ${{ secrets.AWS_ACCESS_KEY_ID }}
aws-secret-access-key: ${{ secrets.AWS_SECRET_ACCESS_KEY }}
aws-region: eu-west-1
- name: Block concurrent runs
uses: softprops/turnstyle@v1
env:
GITHUB_TOKEN: ${{ secrets.GITHUB_TOKEN }}
- name: Deploy Stack
run: |
yarn lambda:deploy \
--context apiKey=${{ secrets.DATABASE_API_KEY }} \
--context recipientEmails=${{ secrets.RECIPIENT_EMAILS }} \
--context versionFromGitHubActions=${{ github.run_id }}
- name: Write shows from file to Dynamo
run: npx ts-node ./tools/write-shows-from-file.ts
smoke-test:
name: 💨 Smoke Test
needs: [deploy]
runs-on: ubuntu-latest
env:
DATADOG_API_KEY: ${{ secrets.DD_API_KEY }}
DATADOG_APP_KEY: ${{ secrets.DD_APP_KEY }}
steps:
- uses: actions/checkout@v4
- name: Restore node_modules from cache
id: cache-node-modules
uses: actions/cache@v3
with:
path: node_modules
key: v1-${{ runner.os }}-${{ hashFiles('yarn.lock') }}
- name: Install NPM packages
if: steps.cache-node-modules.outputs.cache-hit != 'true'
run: yarn install --frozen-lockfile
- name: Smoke test
run: ./tools/smoke.sh