🩹 [Patch]: Refactor TestData JSON formatting in Process-PSModule.yml (#28)
This pull request updates the way test environment variables are passed to the workflow in .github/workflows/Process-PSModule.yml. The main change is to the formatting and encoding of the TestData field, specifically for how variables are referenced.
Workflow variable handling:
- Changed the
TestDatafield to referenceTEST_VARIABLEusing"${{ vars.TEST_VARIABLE }}"instead oftoJSON(vars.TEST_VARIABLE), simplifying the value assignment and making it consistent with secret referencing. - Reformatted the
TestDataJSON for improved readability by expanding it to multiple lines.