Make important CI steps stand out console report

This commit is contained in:
Claudio Ortolina
2025-09-16 11:32:58 +03:00
parent 9a3f04f962
commit 15e7d90470
+8 -8
View File
@@ -60,15 +60,15 @@ jobs:
FLUXON_KEY_FINGERPRINT: ${{ secrets.FLUXON_KEY_FINGERPRINT }}
- name: Fetch dependencies
run: mix deps.get
- name: Check unused dependencies
- name: ==> Check unused dependencies
run: mix deps.unlock --check-unused
- name: Check translations
- name: ==> Check translations
run: mix gettext.extract --check-up-to-date
- name: Check formatting
- name: ==> Check formatting
run: mix format --check-formatted
- name: Check Credo
- name: ==> Check Credo
run: mix credo --strict
- name: Run tests
- name: ==> Run tests
run: mix test
env:
CLOAK_ENCRYPTION_KEY: f5ol1dJROsm9yi/tvtHiblN8aLH1FUN/obEvUcASx3U=
@@ -83,15 +83,15 @@ jobs:
steps:
- uses: actions/checkout@v4
- uses: gacts/install-hurl@v1
- name: Deploy to production
- name: ==> Deploy to production
run: hurl --test --report-tap deploy.tap scripts/deploy.hurl
env:
HURL_coolify_token: ${{ secrets.COOLIFY_TOKEN }}
HURL_coolify_host: ${{ vars.COOLIFY_HOST }}
HURL_coolify_app_uuid: ${{ vars.COOLIFY_APP_UUID }}
- name: Wait for container to start
- name: ==> Wait for container to start
run: hurl --test --report-tap healthcheck.tap test/healthcheck.hurl
- name: Run verification tests
- name: ==> Run verification tests
run: hurl --test --report-tap verification.tap test/prod.hurl
env:
HURL_api_token: ${{ secrets.API_TOKEN }}