Skip to content

Commit

Permalink
Pass packages as string, then fromJSON it within the test-js-packages
Browse files Browse the repository at this point in the history
  • Loading branch information
mofojed committed Nov 20, 2023
1 parent 46578df commit fc2c096
Show file tree
Hide file tree
Showing 2 changed files with 2 additions and 2 deletions.
2 changes: 1 addition & 1 deletion .github/workflows/modified-plugin.yml
Original file line number Diff line number Diff line change
Expand Up @@ -56,7 +56,7 @@ jobs:
if: ${{ needs.changes.outputs.packages != '[]' && needs.changes.outputs.packages != '' }}
uses: ./.github/workflows/test-js-packages.yml
with:
packages: ${{ fromJSON(needs.changes.outputs.packages) }}
packages: ${{ needs.changes.outputs.packages }}

filter-release:
if: github.event_name == 'push' && startsWith(github.ref, 'refs/tags/')
Expand Down
2 changes: 1 addition & 1 deletion .github/workflows/test-js-packages.yml
Original file line number Diff line number Diff line change
Expand Up @@ -24,7 +24,7 @@ jobs:
# The setup steps should all be cached between tests on the separate packages
strategy:
matrix:
package: ${{ inputs.packages }}
package: ${{ fromJSON(inputs.packages) }}
steps:
- uses: actions/checkout@v3

Expand Down

0 comments on commit fc2c096

Please sign in to comment.