story: Add default Trial story #920
Workflow file for this run
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
name: Test suite | |
on: | |
push: | |
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 |