From 134205e58a5b3f23b0d8b35aea6dfaaf10f8e0a7 Mon Sep 17 00:00:00 2001 From: moilanik Date: Thu, 18 Jun 2026 13:04:35 +0300 Subject: [PATCH] =?UTF-8?q?fixej=C3=A4?= MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit --- .gitea/workflows/example-cucumber-tests.yml | 4 ++-- .gitea/workflows/example-main.yml | 2 -- Dockerfile.ci-bats | 2 +- 3 files changed, 3 insertions(+), 5 deletions(-) diff --git a/.gitea/workflows/example-cucumber-tests.yml b/.gitea/workflows/example-cucumber-tests.yml index d604044..e017bb7 100644 --- a/.gitea/workflows/example-cucumber-tests.yml +++ b/.gitea/workflows/example-cucumber-tests.yml @@ -38,8 +38,8 @@ jobs: run: | mkdir -p reports/cucumber npx cucumber-js \ - --format json:reports/cucumber/report.json \ - --format html:reports/cucumber/report.html 2>&1 + --format json:reports/cucumber/results.json \ + --format html:reports/cucumber/test-report.html 2>&1 - name: Report if: always() diff --git a/.gitea/workflows/example-main.yml b/.gitea/workflows/example-main.yml index a734123..d5b84db 100644 --- a/.gitea/workflows/example-main.yml +++ b/.gitea/workflows/example-main.yml @@ -29,7 +29,6 @@ jobs: secrets: inherit with: env_json: ${{ needs.load-config.outputs.env_json }} - cucumber: name: Cucumber tests needs: [load-config, check-version] @@ -38,7 +37,6 @@ jobs: secrets: inherit with: env_json: ${{ needs.load-config.outputs.env_json }} - build-push: name: Build & Push Docker needs: [load-config, check-version, bats, cucumber] diff --git a/Dockerfile.ci-bats b/Dockerfile.ci-bats index 6c54ae0..ef0f894 100644 --- a/Dockerfile.ci-bats +++ b/Dockerfile.ci-bats @@ -1,3 +1,3 @@ FROM bats/bats:1.11.0 -RUN apk add --no-cache lsof python3 jq curl ruby && \ +RUN apk add --no-cache lsof python3 jq curl ruby nodejs && \ gem install bashcov -v 3.3.0