-
Notifications
You must be signed in to change notification settings - Fork 0
125 lines (115 loc) · 3.05 KB
/
lint.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
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
name: Code Style
on:
push:
branches:
- main
pull_request:
branches:
- main
- dev
permissions:
checks: write
contents: write
jobs:
lint:
name: Run linters
runs-on: self-hosted
steps:
- name: Check out Git repository
uses: actions/checkout@v3
- name: Set up Node.js
uses: actions/setup-node@v4
with:
node-version: 20
- name: Set up Python
uses: actions/setup-python@v5
with:
python-version: 3.12
- name: Install Node (frontend) dependencies
working-directory: frontend
run: npm ci
- name: Install Python linting (backend) dependencies
run: pip install autopep8
- name: Run Frontend linters
working-directory: frontend
run: |
npm run lint
npm run format:check
- name: Run Backend linter
run: autopep8 -rd --exit-code backend
pytest:
name: Backend Unit Testing
runs-on: self-hosted
env:
DATABASE_URI: "${{ secrets.POSTGRES_CONNECTION }}"
FRONTEND_URL: "https://localhost:8080"
CAS_SERVER_URL: "https://login.ugent.be"
SECRET_KEY: "test"
ALGORITHM: "HS256"
FILE_PATH: "files"
steps:
- uses: actions/checkout@v3
- name: Set up Python 3.12
uses: actions/setup-python@v5
with:
python-version: 3.12
- name: Install dependencies
working-directory: backend
run: |
python -m pip install --upgrade pip
pip install -r requirements.txt
- name: Initialize Database
working-directory: backend
run: |
alembic upgrade head
- name: Test with pytest
working-directory: backend
run: |
pip install pytest pytest-cov pytest-html pytest-sugar pytest-json-report
py.test -v --cov --html=../reports/pytest/report.html
- name: Archive pytest coverage results
uses: actions/upload-artifact@v1
with:
name: pytest-coverage-report
path: reports/pytest/
- name: clean up alembic
working-directory: backend
if: always()
run: alembic downgrade base
vitest:
name: Frontend Unit Testing
runs-on: self-hosted
env:
VITE_APP_URL: https://localhost:8080
VITE_API_URL: http://localhost:5173
steps:
- uses: actions/checkout@v3
- name: Use Node.js
uses: actions/setup-node@v2
with:
node-version: '18'
- name: Install dependencies
working-directory: frontend
run: npm install
- name: Run Tests
working-directory: frontend
run: npm run test:unit
pyright:
name: Pyright
runs-on: self-hosted
steps:
- uses: actions/checkout@v3
- name: Set up Python 3.12
uses: actions/setup-python@v5
with:
python-version: 3.12
- name: Install dependencies
working-directory: backend
run: |
python -m pip install --upgrade pip
pip install -r requirements.txt
pip install pyright
- name: run pyright
working-directory: backend
run: |
pyright