feat: expand workflow template library with Tauri and Svelte templates - #28
Merged
Merged
Conversation
Closes #10 Co-authored-by: kayodebristol <3579196+kayodebristol@users.noreply.github.com>
Copilot
AI
changed the title
[WIP] Add reusable workflow templates for CI/CD patterns
feat: expand workflow template library with Tauri and Svelte templates
Aug 8, 2026
kayodebristol
marked this pull request as ready for review
August 8, 2026 21:34
Contributor
There was a problem hiding this comment.
Pull request overview
Adds new GitHub Actions workflow templates to the org .github repository to standardize CI/CD for Tauri v2 desktop apps and SvelteKit/Svelte 5 apps, complementing the existing Rust and Node.js templates.
Changes:
- Added a cross-platform Tauri v2 CI template (Rust + frontend checks + build) with a release job delegating to
release-reusable.yml. - Added a SvelteKit/Svelte 5 CI template (Node 20/22 matrix, lint/format/check/tests/build) with a release job delegating to
release-reusable.yml. - Added corresponding
workflow-templates/*.properties.jsonmetadata entries for both templates.
Reviewed changes
Copilot reviewed 4 out of 4 changed files in this pull request and generated 1 comment.
| File | Description |
|---|---|
| workflow-templates/tauri-app.yml | New Tauri v2 CI + release workflow template (Linux/macOS/Windows matrix). |
| workflow-templates/tauri-app.properties.json | Template metadata for the new Tauri workflow. |
| workflow-templates/svelte-kit.yml | New SvelteKit/Svelte 5 CI + release workflow template (Node 20/22 matrix). |
| workflow-templates/svelte-kit.properties.json | Template metadata for the new SvelteKit workflow. |
💡 Add a code-review agent skill or configure MCP servers for context-aware, tailored reviews. Learn more in the docs.
Comment on lines
+93
to
+96
| permissions: | ||
| contents: write | ||
| id-token: write | ||
| uses: plures/.github/.github/workflows/release-reusable.yml@main |
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.
Adds reusable workflow templates for Tauri v2 and SvelteKit/Svelte 5 to complement existing Rust and Node.js templates for org-wide CI/CD standardization.
New templates
tauri-app.yml— Cross-platform (Linux/macOS/Windows) CI for Tauri v2 apps: system deps, Rust fmt/clippy/test, frontend lint/typecheck/test,tauri-actionbuild, org release workflowsvelte-kit.yml— SvelteKit CI on Node 20 & 22: lint, format-check,svelte-check, Vitest, Playwright (auto-detected from config), build, org release workflowBoth follow established template conventions:
fail-fast: falsematrix,actions/cache@v4for Cargo, conditional release job gated on push to main, delegation torelease-reusable.yml.