Skip to content

Commit

Permalink
split frontend/backend unit test jobs
Browse files Browse the repository at this point in the history
  • Loading branch information
lukavdplas committed Aug 5, 2024
1 parent 3f8d24a commit 52433a4
Showing 1 changed file with 18 additions and 2 deletions.
20 changes: 18 additions & 2 deletions .github/workflows/test.yml
Original file line number Diff line number Diff line change
Expand Up @@ -15,7 +15,7 @@ on:
- 'release/**'

jobs:
build:
test-back:

runs-on: ubuntu-22.04

Expand Down Expand Up @@ -68,4 +68,20 @@ jobs:
yarn
- name: Run all tests
run: |
yarn test
cd backend
pytest
test-front:
runs-on: ubuntu-22.04

steps:
- name: Use Node.js
uses: actions/setup-node@v2
with:
node-version: '18'

- name: Install dependencies
run: |
yarn fyarn
- name: Run tests
run: |
yarn test-front

0 comments on commit 52433a4

Please sign in to comment.