Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

[ACS-5328] initial-create-folder-test #3243

Merged
merged 10 commits into from
Jun 19, 2023
Prev Previous commit
Next Next commit
Revert "removing playwright if statement"
This reverts commit 6510700.
azakrzewski-hy committed Jun 19, 2023
commit d6ea2d4df3736e4d2b8c9f3590572743185f048f
14 changes: 9 additions & 5 deletions .github/actions/run-e2e/action.yml
Original file line number Diff line number Diff line change
@@ -45,11 +45,15 @@ runs:
npm start > /dev/null &\
echo "Running protractor tests with options ${{ inputs.options }}"
echo "./node_modules/.bin/protractor \"./protractor.conf.js\" ${{ inputs.options }} || exit 1"
./node_modules/.bin/protractor "./protractor.conf.js" ${{ inputs.options }} $E2E_PROTRACTOR_OPTS || exit 1
sleep 90
npx nx run ${{ inputs.options }}-e2e:e2e
if [ ${{ inputs.test-runner }} == "playwright" ]; then
echo "Running playwright tests with options ${{ inputs.options }}"
sleep 90
npx nx run ${{ inputs.options }}-e2e:e2e
else
echo "Running protractor tests with options ${{ inputs.options }}"
echo "./node_modules/.bin/protractor \"./protractor.conf.js\" ${{ inputs.options }} || exit 1"
./node_modules/.bin/protractor "./protractor.conf.js" ${{ inputs.options }} $E2E_PROTRACTOR_OPTS || exit 1
fi
- name: Upload E2Es results
if: ${{ always() }}