improve multi-sig #38
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 start node | |
on: | |
pull_request: | |
branches: [ "main" ] | |
jobs: | |
test-start-docker: | |
runs-on: ubuntu-latest | |
steps: | |
- name: Check out the repository to the runner | |
uses: actions/checkout@v4 | |
- name: Set up Docker | |
run: | | |
sudo apt-get update | |
sudo apt-get install -y docker-compose | |
- name: Start node, wait 60s then stop node | |
shell: bash | |
run: | | |
/bin/bash ./start-docker.sh 2>&1 | tee script_output.txt & | |
sleep 60 | |
/bin/bash ./stop-docker.sh |