PROCESS: CouchDB is up to date. #71
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: Acceptance tests | |
on: push | |
jobs: | |
test: | |
runs-on: ubuntu-latest | |
steps: | |
- uses: actions/checkout@v2 | |
- name: Install and run Argos with test data | |
run: | | |
export COUCHDB_USER="TO_BE_CHANGED" | |
export COUCHDB_PASSWORD="TO_BE_CHANGED" | |
docker-compose up -d | |
- name: Install test tools | |
run: npm install | |
- uses: nev7n/wait_for_response@v1 | |
with: | |
url: http://localhost/ | |
responseCode: 200 | |
- name: Run tests | |
run : npm test | |
shell: 'script -q -e -c "bash {0}"' |