-
Notifications
You must be signed in to change notification settings - Fork 0
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
Fixed Github Actions caused by the new yarn berry version #112
Merged
Changes from all commits
Commits
Show all changes
9 commits
Select commit
Hold shift + click to select a range
6316e26
Try to fix yarn@2 issue caused in Actions
chrisli30 e994a2a
Fix a typo in Release Action
chrisli30 c185ad8
Try to fix dependency missing issue in Actions
chrisli30 b576041
Run yarn install with yarn berry version in local environment
chrisli30 8bf3653
Turn off installConfig.immutable in .yarnrc.yml in github Actions
chrisli30 42fec63
Turn off installConfig.immutable in .yarnrc.yml in github Actions
chrisli30 5ca507d
Added continue-on-error: true to changeset Pull Release in Action
chrisli30 fc86b5b
Remove testing trigger branch from .github/workflows/release.yml
chrisli30 b0914e4
Updated Github Actions using yarn berry version
chrisli30 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
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
Binary file not shown.
Large diffs are not rendered by default.
Oops, something went wrong.
This file was deleted.
Oops, something went wrong.
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 +1,5 @@ | ||
nodeLinker: node-modules | ||
|
||
yarnPath: .yarn/releases/yarn-4.0.2.cjs | ||
|
||
enableImmutableInstalls: false # turn off this to allow yarn to update the yarn.lock file; this is to prevent yarn install from interruption in the Release Github Actions |
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 |
---|---|---|
|
@@ -25,11 +25,14 @@ | |
"prepare": "husky install" | ||
}, | ||
"devDependencies": { | ||
"@babel/preset-env": "^7.19.4", | ||
"@babel/core": "^7.23.5", | ||
"@babel/preset-env": "^7.23.5", | ||
"@babel/preset-typescript": "^7.18.6", | ||
"@changesets/cli": "^2.26.2", | ||
"@types/babel__core": "^7", | ||
"@types/jest": "^29.5.4", | ||
"@types/lodash": "^4.14.191", | ||
"@types/node": "^20.10.3", | ||
There was a problem hiding this comment. Choose a reason for hiding this commentThe reason will be displayed to describe this comment to others. Learn more. This @types/node dependency was necessary but missing, causing yarn install error. |
||
"@typescript-eslint/eslint-plugin": "^6.7.3", | ||
"@typescript-eslint/parser": "^6.7.3", | ||
"eslint": "^8.50.0", | ||
|
@@ -55,5 +58,6 @@ | |
"eslint --fix" | ||
], | ||
"*.ts": "eslint --cache --fix" | ||
} | ||
}, | ||
"packageManager": "[email protected]" | ||
} |
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.
This @babel/core dependency was necessary but missing, causing yarn install error.