Skip to content

ci: Prevent duplicate workflows to be triggered by both the push and … #890

ci: Prevent duplicate workflows to be triggered by both the push and …

ci: Prevent duplicate workflows to be triggered by both the push and … #890

Workflow file for this run

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