ci: fix lint #6258
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: Run integration tests 3 for test chain (clp) | |
on: | |
push: | |
paths-ignore: | |
- "ui/**" | |
jobs: | |
integration: | |
timeout-minutes: 40 | |
runs-on: ubuntu-20.04 | |
steps: | |
- uses: actions/checkout@v2 | |
- uses: actions/checkout@v2 | |
with: | |
repository: Sifchain/sifchain-devops | |
path: deploy | |
token: "${{ secrets.GIT_PAT }}" | |
- name: Set up Python | |
uses: actions/setup-python@v4 | |
with: | |
python-version: "3.8.10" | |
- name: Setup Node.js | |
uses: actions/setup-node@v3 | |
with: | |
node-version: "v16.20.2" | |
- name: Setup Go | |
uses: actions/setup-go@v4 | |
with: | |
go-version: "1.21" | |
- name: Set up linux environment | |
run: # installs development tools and updates .bash_profile | |
bash test/integration/setup-linux-environment.sh | |
- name: Setup integration test environment | |
run: | | |
source $HOME/.bash_profile | |
bash test/integration/start-integration-env.sh | |
- name: Execute test chain integration tests | |
run: | | |
source $HOME/.bash_profile | |
. test/integration/vagrantenv.sh | |
export LOG_LEVEL=DEBUG | |
bash test/integration/execute_integration_tests_against_test_chain_clp.sh |