This repository was archived by the owner on Apr 13, 2026. It is now read-only.
grafana-bridge: route via grafana subdomain to bypass WAF challenge #96
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: Installer Stack Smoke Test | |
| on: | |
| push: | |
| branches: [ main, deploy ] | |
| pull_request: | |
| branches: [ main, deploy ] | |
| workflow_dispatch: | |
| jobs: | |
| stack-smoke-test: | |
| runs-on: ubuntu-latest | |
| timeout-minutes: 45 | |
| permissions: | |
| contents: read | |
| steps: | |
| - name: Checkout repository | |
| uses: actions/checkout@v4 | |
| - name: Set up Docker Buildx | |
| uses: docker/setup-buildx-action@v3 | |
| - name: Show Docker versions | |
| run: | | |
| docker version | |
| docker compose version | |
| - name: Ensure CI script is executable | |
| run: chmod +x ./dev-utils/ci/stack-smoke-test.sh | |
| - name: Prepare environment file for CI | |
| run: | | |
| if [ ! -f installer/.env ]; then | |
| cp installer/.env.example installer/.env | |
| echo "Created .env file from .env.example" | |
| fi | |
| ls -la installer/.env | |
| - name: Run installer smoke test | |
| env: | |
| CI: "true" | |
| DOCKER_BUILDKIT: "1" | |
| COMPOSE_DOCKER_CLI_BUILD: "1" | |
| run: ./dev-utils/ci/stack-smoke-test.sh |