Fix pnpm install approvals and add missing LSP translation keys#2460
Closed
scorpiofox420-cmd wants to merge 2 commits into
Closed
Fix pnpm install approvals and add missing LSP translation keys#2460scorpiofox420-cmd wants to merge 2 commits into
scorpiofox420-cmd wants to merge 2 commits into
Conversation
# Initialize the repository git init -b main # Stage all files (server.js, index.html, applets-config.json) git add . # Commit your code locally git commit -m "Initial commit: Added frontend, backend architecture, and Spanner configs" # Link your local folder to your remote GitHub repository # (Replace with your actual GitHub username and repo name) git remote add origin https://github.com/YOUR_USERNAME/verizon-checkout-hub.git # Push it live to GitHub git push -u origin main
Contributor
Greptile SummaryThis PR adds a new GitHub Actions build workflow. The main changes are:
Confidence Score: 4/5The new workflow can fail before it validates the project build.
.github/workflows/webpack.yml Important Files Changed
Reviews (1): Last reviewed commit: "Add empty line after build step in webpa..." | Re-trigger Greptile |
| - name: Build | ||
| run: | | ||
| npm install | ||
| npx webpack |
Contributor
There was a problem hiding this comment.
When this workflow runs on a push or pull request to main, npx webpack does not match the repository build path. The project installs Rspack tooling and the existing build script runs Rspack, so this job can fail on the missing local webpack CLI or validate an unpinned tool instead of the intended build.
Suggested change
| npx webpack | |
| npm run build |
Member
|
This contains some unwanted changes like webpack workflow file (i don't think that's necessary). |
This file contains hidden or 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
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment
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.
This PR approves necessary pnpm build scripts, installs missing Node/LSP dependencies, and adds the missing language translation keys required for LSP rename/code actions. It also regenerates the language type definitions and verifies TypeScript and Biome lint passes.