Skip to content

Commit

Permalink
Backend Onboarding
Browse files Browse the repository at this point in the history
  • Loading branch information
WilliamRChiu committed Jan 25, 2025
1 parent bcd74d4 commit abc96b6
Show file tree
Hide file tree
Showing 53 changed files with 4,422 additions and 4,375 deletions.
52 changes: 26 additions & 26 deletions .github/workflows/frontend_build.yml
Original file line number Diff line number Diff line change
@@ -1,26 +1,26 @@
name: Frontend Build
on:
pull_request:
push:
branches:
- main

jobs:
build:

runs-on: ubuntu-latest

steps:
- uses: actions/checkout@v4
- name: Use Node.js
uses: actions/setup-node@v4
with:
node-version: '20.x'
- name: Install dependencies for frontend
run: |
cd frontend
npm ci
- name: Build project
run: |
cd frontend
npm run build
name: Frontend Build
on:
pull_request:
push:
branches:
- main

jobs:
build:

runs-on: ubuntu-latest

steps:
- uses: actions/checkout@v4
- name: Use Node.js
uses: actions/setup-node@v4
with:
node-version: '20.x'
- name: Install dependencies for frontend
run: |
cd frontend
npm ci
- name: Build project
run: |
cd frontend
npm run build
68 changes: 34 additions & 34 deletions .github/workflows/pytest.yml
Original file line number Diff line number Diff line change
@@ -1,34 +1,34 @@
name: Pytest

on:
pull_request:
push:
branches:
- main

jobs:
pytest:
runs-on: ${{ matrix.os }}

strategy:
matrix:
os: [ubuntu-latest, windows-latest]
python-version: ['3.10']

steps:
- uses: actions/checkout@v3

- name: Set up Python ${{ matrix.python-version }}
uses: actions/setup-python@v3
with:
python-version: ${{ matrix.python-version }}

- name: Install dependencies
run: |
python -m pip install --upgrade pip
pip install -r requirements.txt
pip install -e .
- name: Run pytest
run: |
python -m pytest
name: Pytest

on:
pull_request:
push:
branches:
- main

jobs:
pytest:
runs-on: ${{ matrix.os }}

strategy:
matrix:
os: [ubuntu-latest, windows-latest]
python-version: ['3.10']

steps:
- uses: actions/checkout@v3

- name: Set up Python ${{ matrix.python-version }}
uses: actions/setup-python@v3
with:
python-version: ${{ matrix.python-version }}

- name: Install dependencies
run: |
python -m pip install --upgrade pip
pip install -r requirements.txt
pip install -e .
- name: Run pytest
run: |
python -m pytest
Loading

0 comments on commit abc96b6

Please sign in to comment.