From 8e7e6cdc3e2207caacd829118c2321c0e64eccb5 Mon Sep 17 00:00:00 2001 From: David Losert Date: Sun, 17 Nov 2024 10:19:07 +0100 Subject: [PATCH] fix: adds missing "'" in yml definition --- action.yml | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/action.yml b/action.yml index 84d0bf3..daced31 100644 --- a/action.yml +++ b/action.yml @@ -27,7 +27,7 @@ inputs: file-coverage-root-path: required: false description: 'The root (or absolute) bit of the path used within the json coverage reports to point to the covered files. You can change this if your reports where generated in a different context (e.g. a docker container) and the absolute paths don't match the current runner`s workspace. Uses the runner`s workspace path by default.' - default: ${{ github.workspace }} + default: ${{ github.workspace }}' working-directory: required: false description: 'Working directory where to look for the vite config file and the coverage report files. Uses "./" by default.'