-
Notifications
You must be signed in to change notification settings - Fork 0
49 lines (41 loc) · 1.27 KB
/
Copy pathmain.yml
File metadata and controls
49 lines (41 loc) · 1.27 KB
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
name: Fullstack Auto Test
# Chạy khi có code được push vào nhánh main hoặc có Pull Request
on:
push:
branches: ["master"] # Sửa main thành master
pull_request:
branches: ["master"] # Sửa main thành master
jobs:
# Job 1: Test phần Backend
test-backend:
runs-on: ubuntu-latest
defaults:
run:
working-directory: ./backend # <--- Trỏ vào thư mục backend của bạn
steps:
- uses: actions/checkout@v3
- name: Setup Node.js
uses: actions/setup-node@v3
with:
node-version: "18"
- name: Install Backend Dependencies
run: npm install
- name: Run Backend Unit Tests
run: npm test
# Job 2: Test phần Frontend
test-frontend:
runs-on: ubuntu-latest
defaults:
run:
working-directory: ./frontend # <--- Trỏ vào thư mục frontend của bạn
steps:
- uses: actions/checkout@v3
- name: Setup Node.js
uses: actions/setup-node@v3
with:
node-version: "18"
- name: Install Frontend Dependencies
run: npm install
- name: Run Frontend Unit Tests
# Thêm -- --watchAll=false để nó chạy 1 lần rồi dừng, không treo máy chờ
run: npm test -- --watchAll=false