Skip to content

Commit

Permalink
Try using multiline string syntax for file reading
Browse files Browse the repository at this point in the history
  • Loading branch information
RandomTannenbaum committed Nov 4, 2024
1 parent db9b603 commit bae9d45
Showing 1 changed file with 5 additions and 2 deletions.
7 changes: 5 additions & 2 deletions .github/workflows/frontend-test-action.yml
Original file line number Diff line number Diff line change
Expand Up @@ -31,8 +31,11 @@ jobs:
- name: Generate file list
id: generate-file-list
run: |
FILES=$(ls -1 "./frontend/cypress/e2e/" | jq -R . | jq -s .)
echo $FILES
{
echo 'FILES<<EOF'
ls -1 "./frontend/cypress/e2e/" | jq -R . | jq -s .
echo EOF
} >> "$GITHUB_OUTPUT"
e2e:
needs: get-e2e-files
Expand Down

0 comments on commit bae9d45

Please sign in to comment.