-
Notifications
You must be signed in to change notification settings - Fork 5
71 lines (67 loc) · 2.05 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
name: ci
on:
push:
branches:
- "*"
env:
NODE_VERSION: 20
permissions:
contents: read
jobs:
frontend-ci:
runs-on: ubuntu-latest
steps:
- name: Checkout code
uses: actions/checkout@v4
- name: Setting node version
uses: actions/setup-node@v4
with:
node-version: ${{ env.NODE_VERSION }}
- name: Install dependencies
working-directory: frontend
run: npm install
- name: Linting
working-directory: frontend
run: npm run lint
- name: Test
run: docker compose -f docker-compose-test.yml run --rm test-frontend
# - name: Build
# run: docker compose -f docker-compose-prod.yml build frontend
backend-ci:
runs-on: ubuntu-latest
strategy:
matrix:
service:
[
question-service,
user-service,
matching-service,
collab-service,
code-execution-service,
communication-service,
qn-history-service,
]
steps:
- name: Checkout code
uses: actions/checkout@v4
- name: Setting node version
uses: actions/setup-node@v4
with:
node-version: ${{ env.NODE_VERSION }}
- name: Install dependencies
working-directory: backend/${{ matrix.service }}
run: npm install
- name: Linting
working-directory: backend/${{ matrix.service }}
run: npm run lint
- name: Test
env:
FIREBASE_PROJECT_ID: ${{ secrets.FIREBASE_PROJECT_ID }}
FIREBASE_PRIVATE_KEY: ${{ secrets.FIREBASE_PRIVATE_KEY }}
FIREBASE_CLIENT_EMAIL: ${{ secrets.FIREBASE_CLIENT_EMAIL }}
FIREBASE_STORAGE_BUCKET: ${{ secrets.FIREBASE_STORAGE_BUCKET }}
JWT_SECRET: ${{ secrets.JWT_SECRET }}
ONE_COMPILER_KEY: ${{ secrets.ONE_COMPILER_KEY }}
run: docker compose -f docker-compose-test.yml run --rm test-${{ matrix.service }}
# - name: Build
# run: docker compose -f docker-compose-prod.yml build ${{ matrix.service }}