-
Notifications
You must be signed in to change notification settings - Fork 5
58 lines (54 loc) · 1.65 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
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: Frontend tests
working-directory: frontend
run: docker compose -f docker-compose-test.yml run --rm test-frontend
backend-ci:
runs-on: ubuntu-latest
strategy:
matrix:
service: [question-service, user-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: Backend tests
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 }}
run: docker compose -f docker-compose-test.yml run --rm test-${{ matrix.service }}