-
Notifications
You must be signed in to change notification settings - Fork 0
156 lines (129 loc) · 3.29 KB
/
test.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: Test and build
on:
push:
branches: [ 'master', 'feat/*' ]
pull_request:
branches: [ 'master' ]
env:
go_version: 1.18
node_version: 14
DATABASE_USER: root
DATABASE_PASSWORD: example
DATABASE_HOST: 127.0.0.1
jobs:
openapi-code-generator:
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@v3
with:
fetch-depth: 1
- run: make clean
- run: make openapi-spec
- uses: actions/upload-artifact@v3
with:
name: openapi-files
path: |
assets/openapi
pkg/openapi
if-no-files-found: error
frontend:
needs: openapi-code-generator
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@v3
with:
fetch-depth: 1
- uses: actions/setup-node@v3
with:
node-version: ${{ env.node_version }}
- uses: actions/download-artifact@v3
with:
name: openapi-files
path: .
- run: make lint-frontend
- run: make frontend
- run: make test-frontend
backend:
needs: openapi-code-generator
runs-on: ubuntu-latest
strategy:
fail-fast: false
matrix:
mongodb_image: ['mongo:4', 'mongo:5']
services:
mongodb:
env:
MONGO_INITDB_ROOT_USERNAME: ${{ env.DATABASE_USER }}
MONGO_INITDB_ROOT_PASSWORD: ${{ env.DATABASE_PASSWORD }}
image: ${{ matrix.mongodb_image }}
ports:
- 27017:27017
steps:
- uses: actions/checkout@v3
with:
fetch-depth: 1
- uses: actions/download-artifact@v3
with:
name: openapi-files
path: .
- name: Set up Go
uses: actions/setup-go@v3
with:
go-version: ${{ env.go_version }}
- name: Test
run: make test
- name: Test
run: make build-linux
- name: Print coverage
run: go tool cover -func cover.out | tail -n 1 | awk '{print $3}'
e2e:
needs: [backend, frontend]
runs-on: ubuntu-latest
services:
mongodb:
env:
MONGO_INITDB_ROOT_USERNAME: root
MONGO_INITDB_ROOT_PASSWORD: example
image: 'mongo:5'
ports:
- 27017:27017
steps:
- uses: actions/checkout@v3
with:
fetch-depth: 1
- uses: actions/download-artifact@v3
with:
name: openapi-files
path: .
- uses: actions/setup-node@v3
with:
node-version: ${{ env.node_version }}
- name: Set up Go
uses: actions/setup-go@v3
with:
go-version: ${{ env.go_version }}
- name: Run e2e suite
env:
SPOTIFY_ID: ${{ secrets.SPOTIFY_ID }}
SPOTIFY_SECRET: ${{ secrets.SPOTIFY_SECRET }}
GENIUS_API_TOKEN: ${{ secrets.GENIUS_API_TOKEN }}
run: make test-e2e
- uses: actions/upload-artifact@v3
if: failure()
with:
name: cypress-files
path: |
tests/e2e/screenshots
tests/e2e/videos
docker-image:
needs: e2e
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@v3
with:
fetch-depth: 1
- name: Build image
uses: docker/build-push-action@v3
with:
push: false
context: .