-
Notifications
You must be signed in to change notification settings - Fork 61
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
test: Package Manager Support for deploy #869
Closed
Closed
Changes from 22 commits
Commits
Show all changes
24 commits
Select commit
Hold shift + click to select a range
bd0ef45
chore: change trigger
0618 247e17b
chore: setup AWS credentials
0618 52d0f6a
chore: enable e2e deployment
0618 c4be31e
chore: change test order
0618 2be6ae7
fix: change rootTestDir
0618 d3e936f
fix: install typescript
0618 67e7382
fix: install @aws-amplify/backend
0618 2e343ef
fix: install @aws-amplify/backend-cli
0618 e83b172
fix: install @aws-amplify/auth-construct-alpha and deployer
0618 8bed4d7
chore: ignore logs
0618 339c4e5
fix: install uuid for data-storage-auth
0618 e1c22c0
temp: comment out cdk deploys
0618 214681d
fix: auth-cdk projects
0618 3d15a4d
fix: fileURLToPath error
0618 ba1ee8b
fix: fix fileURLToPath error
0618 41803e6
fix: fix fileURLToPath error again
0618 c1f12e6
Merge branch 'poc/package-manager-support' into poc/pms-deploy
0618 c52a65b
publish locally
0618 7ff5e9e
remove stop:npm-proxy
0618 2d798e3
Merge branch 'poc/package-manager-support' into poc/pms-deploy
0618 436bb17
chore: update package.lock
0618 5744032
feat: test different package managers
0618 7aadedd
chore: cleanup
0618 20f72ce
chore: add readonly
0618 File filter
Filter by extension
Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,3 +1,5 @@ | ||
*.log | ||
logs | ||
coverage | ||
docs | ||
lib | ||
|
Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.
Oops, something went wrong.
Oops, something went wrong.
Oops, something went wrong.
Add this suggestion to a batch that can be applied as a single commit.
This suggestion is invalid because no changes were made to the code.
Suggestions cannot be applied while the pull request is closed.
Suggestions cannot be applied while viewing a subset of changes.
Only one suggestion per line can be applied in a batch.
Add this suggestion to a batch that can be applied as a single commit.
Applying suggestions on deleted lines is not supported.
You must change the existing code in this line in order to create a valid suggestion.
Outdated suggestions cannot be applied.
This suggestion has been applied or marked resolved.
Suggestions cannot be applied from pending reviews.
Suggestions cannot be applied on multi-line comments.
Suggestions cannot be applied while the pull request is queued to merge.
Suggestion cannot be applied right now. Please check back later.
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
not use
npm run e2e
at this moment because we'll add more test (e.g.sandbox.test.ts
) later.There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
I'm assuming the end goal is to replace these with a single call to
PACKAGE_MANAGER_EXECUTABLE=${{matrix.pkg-manager}} npm run e2e
?There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
Yep. We'll eventually use
PACKAGE_MANAGER_EXECUTABLE=${{matrix.pkg-manager}} npm run e2e
when mergepoc/package-manager-support
tomain
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
leave the create amplify as it is and add deployment test for only npm
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
:-)
I'd say "leave existing e2e tests as is, create new job with matrix to run create-amplify test (with added deployment step inside test)".