fix(deps)(deps-dev): bump @semantic-release/changelog #13
Workflow file for this run
This file contains hidden or 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: Integration Tests | |
| on: | |
| workflow_dispatch: | |
| push: | |
| paths: | |
| - 'contracts/**' | |
| - 'packages/**' | |
| - 'docker/**' | |
| - '.github/workflows/integration-tests.yml' | |
| jobs: | |
| integration: | |
| runs-on: ubuntu-latest | |
| steps: | |
| - name: Checkout | |
| uses: actions/checkout@v4 | |
| - name: Set up Docker Buildx | |
| uses: docker/setup-buildx-action@v2 | |
| - name: Build test network image | |
| run: | | |
| docker build -t subtrackr/stellar-standalone:test ./docker | |
| - name: Start test network | |
| run: | | |
| docker-compose -f docker-compose.test.yml up -d --build | |
| - name: Wait and run integration script | |
| run: | | |
| chmod +x ./scripts/test-integration.sh | |
| ./scripts/test-integration.sh |