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

feat: ACNA-2044 - add tests for aio app pack and aio app install #87

Merged
merged 1 commit into from
May 16, 2023
Merged
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension


Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
14 changes: 14 additions & 0 deletions .github/workflows/app-smoke-test.yml
Original file line number Diff line number Diff line change
Expand Up @@ -57,6 +57,20 @@ jobs:
grep "/api/v1/web/ffapp/publish-events" consoleoutput.txt
grep ".adobeio-static.net/index.html" consoleoutput.txt
grep "Successful deployment" consoleoutput.txt
- id: app_pack
name: pack an app (uses previous created app)
run: |
cd ffapp

../bin/run app:pack > consoleoutput.txt
grep "Packaging done." consoleoutput.txt
- id: app_install
name: install an app (uses previous packed app)
run: |
cd ffapp

../bin/run app:install app.zip --output install-folder > consoleoutput.txt
grep "Install done." consoleoutput.txt
- id: createext
name: create app with extension
run: |
Expand Down