Skip to content

Commit abc96b6

Browse files
committed
Backend Onboarding
1 parent bcd74d4 commit abc96b6

Some content is hidden

Large Commits have some content hidden by default. Use the searchbox below for content that may be hidden.

53 files changed

+4422
-4375
lines changed

.github/workflows/frontend_build.yml

Lines changed: 26 additions & 26 deletions
Original file line numberDiff line numberDiff line change
@@ -1,26 +1,26 @@
1-
name: Frontend Build
2-
on:
3-
pull_request:
4-
push:
5-
branches:
6-
- main
7-
8-
jobs:
9-
build:
10-
11-
runs-on: ubuntu-latest
12-
13-
steps:
14-
- uses: actions/checkout@v4
15-
- name: Use Node.js
16-
uses: actions/setup-node@v4
17-
with:
18-
node-version: '20.x'
19-
- name: Install dependencies for frontend
20-
run: |
21-
cd frontend
22-
npm ci
23-
- name: Build project
24-
run: |
25-
cd frontend
26-
npm run build
1+
name: Frontend Build
2+
on:
3+
pull_request:
4+
push:
5+
branches:
6+
- main
7+
8+
jobs:
9+
build:
10+
11+
runs-on: ubuntu-latest
12+
13+
steps:
14+
- uses: actions/checkout@v4
15+
- name: Use Node.js
16+
uses: actions/setup-node@v4
17+
with:
18+
node-version: '20.x'
19+
- name: Install dependencies for frontend
20+
run: |
21+
cd frontend
22+
npm ci
23+
- name: Build project
24+
run: |
25+
cd frontend
26+
npm run build

.github/workflows/pytest.yml

Lines changed: 34 additions & 34 deletions
Original file line numberDiff line numberDiff line change
@@ -1,34 +1,34 @@
1-
name: Pytest
2-
3-
on:
4-
pull_request:
5-
push:
6-
branches:
7-
- main
8-
9-
jobs:
10-
pytest:
11-
runs-on: ${{ matrix.os }}
12-
13-
strategy:
14-
matrix:
15-
os: [ubuntu-latest, windows-latest]
16-
python-version: ['3.10']
17-
18-
steps:
19-
- uses: actions/checkout@v3
20-
21-
- name: Set up Python ${{ matrix.python-version }}
22-
uses: actions/setup-python@v3
23-
with:
24-
python-version: ${{ matrix.python-version }}
25-
26-
- name: Install dependencies
27-
run: |
28-
python -m pip install --upgrade pip
29-
pip install -r requirements.txt
30-
pip install -e .
31-
32-
- name: Run pytest
33-
run: |
34-
python -m pytest
1+
name: Pytest
2+
3+
on:
4+
pull_request:
5+
push:
6+
branches:
7+
- main
8+
9+
jobs:
10+
pytest:
11+
runs-on: ${{ matrix.os }}
12+
13+
strategy:
14+
matrix:
15+
os: [ubuntu-latest, windows-latest]
16+
python-version: ['3.10']
17+
18+
steps:
19+
- uses: actions/checkout@v3
20+
21+
- name: Set up Python ${{ matrix.python-version }}
22+
uses: actions/setup-python@v3
23+
with:
24+
python-version: ${{ matrix.python-version }}
25+
26+
- name: Install dependencies
27+
run: |
28+
python -m pip install --upgrade pip
29+
pip install -r requirements.txt
30+
pip install -e .
31+
32+
- name: Run pytest
33+
run: |
34+
python -m pytest

0 commit comments

Comments
 (0)