Skip to content

Config: Setup Storybook (#620) #884

Config: Setup Storybook (#620)

Config: Setup Storybook (#620) #884

Workflow file for this run

name: Test suite
on:
push:
branches:
- main
- develop
pull_request:
jobs:
backend-test:
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@v3
- name: Run Backend Tests
run: sudo docker-compose --env-file .env-github-actions run server bash -c "python manage.py test"
frontend-test:
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@v3
- name: Run Frontend Tests
run: sudo docker-compose --env-file .env-github-actions run client yarn test --watchAll=false