adding recovery integration tests #11
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: Recovery Signer Integration Test | |
on: [pull_request] | |
jobs: | |
test-ci: | |
name: integration test | |
runs-on: ubuntu-latest | |
steps: | |
- uses: actions/checkout@v2 | |
- name: Start docker | |
run: docker-compose -f docker-compose.yml up -d | |
- uses: actions/setup-node@v2 | |
with: | |
node-version: 18 | |
- run: yarn install | |
- run: yarn build | |
- run: yarn test:integration | |
# ALEC TODO - remove below probably | |
- name: Print Docker Logs | |
if: always() # This ensures that the logs are printed even if the tests fail | |
run: docker-compose logs |