-
Notifications
You must be signed in to change notification settings - Fork 9
91 lines (77 loc) · 2.23 KB
/
pull-request-tests.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
name: Run Tests on Pull Requests
on:
pull_request:
branches:
- '**'
jobs:
test:
runs-on: ubuntu-latest
steps:
- name: Checkout code
uses: actions/checkout@v2
- name: Set up Node
uses: actions/setup-node@v2
with:
node-version: '16.x'
- name: Set up Python
uses: actions/setup-python@v2
with:
python-version: '3.11'
- name: Install redis
run: sudo apt-get install -y redis-server
- name: Cache pip packages
uses: actions/cache@v2
with:
path: ~/.cache/pip
key: ${{ runner.os }}-pip-${{ hashFiles('**/requirements.txt') }}
restore-keys: |
${{ runner.os }}-pip-
- name: Install python dependencies
run: |
cd backend
python -m pip install --upgrade uv
uv venv
uv pip install -r requirements.txt
- name: Run Pytest
run: |
cd backend
source .venv/bin/activate
TEST=1 pytest
- uses: jiro4989/setup-nim-action@v1
with:
repo-token: ${{ secrets.GITHUB_TOKEN }}
- name: FrameOS nim tests
run: |
cd frameos
nimble install -d
nimble setup
nimble test
- name: Visual regression tests
run: |
cd e2e
source ../backend/.venv/bin/activate
make
- name: Check for snapshot modifications
run: |
rm init.sh
if [[ `git status --porcelain` ]]; then
echo "Changes detected in the repository after running visual regression tests."
echo "Run the following locally to fix:"
echo "- cd e2e"
echo "- source ../backend/.venv/bin/activate"
echo "- make"
git status
git diff
echo "changes_detected=true" >> $GITHUB_ENV
else
echo "No changes detected in the repository."
echo "changes_detected=false" >> $GITHUB_ENV
fi
- name: Fail if changes detected
if: env.changes_detected == 'true'
run: exit 1
- name: Build frontend
run: |
cd frontend
npm install
npm run build