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}}