Skip to content

improve multi-sig

improve multi-sig #38

Workflow file for this run

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