-
Notifications
You must be signed in to change notification settings - Fork 5
35 lines (32 loc) · 768 Bytes
/
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
name: ci
on:
push:
branches:
- "*"
pull_request:
branches:
- "*"
env:
NODE_VERSION: 20
jobs:
ci:
runs-on: ubuntu-latest
strategy:
matrix:
service: [frontend, backend/question-service, backend/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: ${{ matrix.service }}
run: npm install
- name: Linting
working-directory: ${{ matrix.service }}
run: npm run lint
# - name: Tests
# working-directory: ${{ matrix.service }}
# run: npm test