From da8c21eb0d6d6614d9ebe2a510b304c0ff562b3a Mon Sep 17 00:00:00 2001 From: Jan Szumotalski Date: Thu, 19 Jun 2025 10:29:11 +0200 Subject: [PATCH] actions:test --- .gitea/workflows/test.yaml | 7 ++++++- 1 file changed, 6 insertions(+), 1 deletion(-) diff --git a/.gitea/workflows/test.yaml b/.gitea/workflows/test.yaml index 2b6a5ce..9987baa 100644 --- a/.gitea/workflows/test.yaml +++ b/.gitea/workflows/test.yaml @@ -24,7 +24,12 @@ jobs: install-dependencies: true - name: Install node dependencies run: npm ci + - name: Echo chrome path + run: | + echo "$CHROMIUM_BIN" + env: + CHROMIUM_BIN: ${{steps.setup-chrome.outputs.chrome-path}} - name: Run tests run: npm run ci - environment: + env: CHROMIUM_BIN: ${{steps.setup-chrome.outputs.chrome-path}}