Skip to content

Commit

Permalink
Convert file list to single line
Browse files Browse the repository at this point in the history
  • Loading branch information
RandomTannenbaum committed Nov 4, 2024
1 parent 661f965 commit a4b1509
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion .github/workflows/frontend-test-action.yml
Original file line number Diff line number Diff line change
Expand Up @@ -31,7 +31,7 @@ jobs:
- name: Generate file list
id: generate-file-list
run: |
FILES=$(ls -1 "./frontend/cypress/e2e/" | jq -R -s -c)
FILES=$(ls -1 "./frontend/cypress/e2e/" | jq -R | jq -s | jq -c '. | map(split("/")[0]) | unique')
echo "file_list=$FILES" >> "$GITHUB_OUTPUT"
e2e:
Expand Down

0 comments on commit a4b1509

Please sign in to comment.