We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent 0a748c7 commit 0244804Copy full SHA for 0244804
.github/workflows/remote-integ-tests-workflow.yml
@@ -147,15 +147,15 @@ jobs:
147
148
- name: Print spec files from output
149
run: |
150
- IFS="," read -a myarray <<< ${{ steps.finding-files.outputs.FILELIST }}
+ IFS=$'\n' read -a myarray <<< ${{ steps.finding-files.outputs.FILELIST }}
151
for i in "${myarray[@]}"; do
152
echo "${i}"
153
done
154
working-directory: opensearch-dashboards-functional-test
155
156
- name: Run spec files from output
157
158
159
160
yarn cypress:run-without-security --browser electron --spec "${i}"
161
sleep 60
0 commit comments