[Sweep GHA Fix] The GitHub Actions run failed with... #60
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.
Description
This pull request includes the following changes:
.github/workflows/frontend.yml
file to configure the GitHub Actions workflow for the frontend..github/workflows/main.yml
file to configure the GitHub Actions workflow for the main branch..prettierrc.toml
file to configure the Prettier formatting options.frontend/app/main.ts
to fix the import statement formatting.frontend/index.html
to fix the doctype declaration.frontend/package.json
to add theformat
script and theprettier
andprettier-plugin-svelte
dependencies.frontend/svelte.config.js
to fix the import statement formatting.frontend/tsconfig.json
to remove the newline at the end of the file.frontend/tsconfig.node.json
to remove the newline at the end of the file.frontend/vite.config.ts
to fix the import statement formatting.src/logic/main.py
to add anexecute_pnpm_command
function and use it in thecollect_results
function.src/tools/pnpm.py
file to implement theexecute_pnpm_command
function.Summary
.github/workflows/frontend.yml
to configure frontend GitHub Actions workflow..github/workflows/main.yml
to configure main branch GitHub Actions workflow..prettierrc.toml
to configure Prettier formatting options.frontend/app/main.ts
to fix import statement formatting.frontend/index.html
to fix doctype declaration.frontend/package.json
to addformat
script and dependencies.frontend/svelte.config.js
to fix import statement formatting.frontend/tsconfig.json
to remove newline at end of file.frontend/tsconfig.node.json
to remove newline at end of file.frontend/vite.config.ts
to fix import statement formatting.src/logic/main.py
to addexecute_pnpm_command
function and use it incollect_results
.src/tools/pnpm.py
to implementexecute_pnpm_command
function.