Skip to content

Commit

Permalink
何故か変数展開されない
Browse files Browse the repository at this point in the history
  • Loading branch information
chihiro-adachi committed Dec 4, 2023
1 parent da15467 commit 97acf19
Showing 1 changed file with 6 additions and 2 deletions.
8 changes: 6 additions & 2 deletions .github/workflows/e2e-test.yml
Original file line number Diff line number Diff line change
Expand Up @@ -130,7 +130,9 @@ jobs:
ECCUBE_PACKAGE_API_URL: 'http://127.0.0.1:8080'
GROUP: ${{ matrix.group }}
SYMFONY_DEPRECATIONS_HELPER: weak
run: vendor/bin/codecept -vvv run acceptance --env chrome,github_action -g ${GROUP} --skip-group restrict-file-upload --html report.html
run: |
sed -i "" "s|%GITHUB_WORKSPACE%|`pwd`|g" codeception/_envs/github_action.yml
vendor/bin/codecept -vvv run acceptance --env chrome,github_action -g ${GROUP} --skip-group restrict-file-upload --html report.html
- name: Codeception with Restrict file upload
if: ${{ matrix.group == 'restrict-fileupload' }}
Expand All @@ -143,7 +145,9 @@ jobs:
GROUP: ${{ matrix.group }}
SYMFONY_DEPRECATIONS_HELPER: weak
ECCUBE_RESTRICT_FILE_UPLOAD: '1'
run: vendor/bin/codecept -vvv run acceptance --env chrome,github_action -g ${GROUP} --html report.html
run:
sed -i "" "s|%GITHUB_WORKSPACE%|`pwd`|g" codeception/_envs/github_action.yml
vendor/bin/codecept -vvv run acceptance --env chrome,github_action -g ${GROUP} --html report.html

- name: Upload evidence
if: failure()
Expand Down

0 comments on commit 97acf19

Please sign in to comment.