-
Notifications
You must be signed in to change notification settings - Fork 0
38 lines (35 loc) · 960 Bytes
/
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
name: Test CI
on:
- pull_request
jobs:
backend-test:
runs-on: self-hosted
steps:
- uses: actions/checkout@v3
- name: Set up Python 3.11
uses: actions/setup-python@v4
with:
python-version: "3.11"
- name: Install dependencies
working-directory: ./
run: |
python -m pip install --upgrade pip
pip install -r ./backend/requirements.txt
- name: Running Django tests
run: |
source /home/selab2/hosting/.env.test
sh ./backend/runtests.sh
frontend-test:
runs-on: self-hosted
steps:
- uses: actions/checkout@v3
- name: Set up Node.js v18.
uses: actions/setup-node@v3
with:
node-version: 18.17.0
- name: Install your dependencies
working-directory: ./frontend
run: npm ci
- name: Run Fronted tests
working-directory: ./frontend
run: npx jest --silent