Skip to content

Commit

Permalink
Address pull request comments
Browse files Browse the repository at this point in the history
  • Loading branch information
tijmenbaarda committed Aug 14, 2024
1 parent 162c397 commit ce5d923
Showing 1 changed file with 7 additions and 4 deletions.
11 changes: 7 additions & 4 deletions .github/workflows/test.yml
Original file line number Diff line number Diff line change
Expand Up @@ -14,12 +14,11 @@ on:
- 'main'

jobs:
build:
test-backend:
runs-on: ubuntu-latest
strategy:
matrix:
python-version: ["3.9", "3.10", "3.11", "3.12"]
node-version: ['20.x']
python-version: ["3.9", "3.12"]

services:
postgres:
Expand Down Expand Up @@ -61,10 +60,14 @@ jobs:
- name: Test with pytest
run: |
cd backend && pytest
test-frontend:
runs-on: ubuntu-latest

steps:
- name: Use Node.js ${{ matrix.node-version }}
uses: actions/setup-node@v4
with:
node-version: ${{ matrix.node-version }}
node-version: '20.x'
cache: 'npm'
cache-dependency-path: './frontend/package-lock.json'
- name: Install frontend dependencies
Expand Down

0 comments on commit ce5d923

Please sign in to comment.