Update 1_Questionnaire-PHQ9.json #501
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
# run test suite | |
--- | |
name: Test | |
on: [push] | |
jobs: | |
test: | |
runs-on: ubuntu-latest | |
env: | |
# Use docker-compose testing override, to stop before production stage | |
COMPOSE_FILE: docker-compose.test.yaml | |
steps: | |
- name: Checkout code | |
uses: actions/checkout@v3 | |
# run as separate step, for cleaner test output | |
- name: Build image | |
run: docker-compose build client | |
- name: Run tests | |
run: " | |
docker-compose run --rm client | |
yarn test | |
" |