[PR #4339] [CLOSED] Test server workflows #5325

Closed
opened 2026-02-28 21:10:37 -06:00 by GiteaMirror · 0 comments
Owner

📋 Pull Request Information

Original PR: https://github.com/actualbudget/actual/pull/4339
Author: @MikesGlitch
Created: 2/8/2025
Status: Closed

Base: masterHead: test-server-workflows


📝 Commits (10+)

  • a1af1ff Add express-rate-limit (#187)
  • bc93604 🔖 (23.4.1) fix rule creation from transaction list (#188)
  • 104c980 Add a password set/reset script (#186)
  • 652d75a Add a handler for AxiosError errors (#189)
  • 2f54a94 🔖 (23.4.2) revert back to old autocomplete & keyboard shortcut fix (#192)
  • 7c744f0 Add a field with all transactions to /nordigen/transactions endpoint (#190)
  • 996f238 Remove the unused migrations folder (#195)
  • d60bb6a App secret service (#194)
  • fb6dc5e 🐛 (nordigen) return JSON response for the secrets API (#197)
  • 9169bfa 🔖 (23.5.0) various improvements (#200)

📊 Changes

156 files changed (+16697 additions, -70 deletions)

View changed files

📝 .github/workflows/build.yml (+14 -0)
.github/workflows/docker-edge.yml (+85 -0)
.github/workflows/docker-release.yml (+88 -0)
📝 package.json (+1 -0)
📝 packages/loot-core/package.json (+1 -0)
packages/sync-server/.dockerignore (+12 -0)
packages/sync-server/.editorconfig (+11 -0)
packages/sync-server/.eslintignore (+6 -0)
packages/sync-server/.eslintrc.cjs (+21 -0)
packages/sync-server/.gitignore (+33 -0)
packages/sync-server/.node-version (+1 -0)
packages/sync-server/.prettierrc.json (+4 -0)
packages/sync-server/LICENSE.txt (+7 -0)
packages/sync-server/README.md (+22 -0)
packages/sync-server/app.js (+11 -0)
packages/sync-server/babel.config.json (+3 -0)
packages/sync-server/docker-compose.yml (+29 -0)
packages/sync-server/docker/download-artifacts.sh (+14 -0)
packages/sync-server/docker/edge-alpine.Dockerfile (+37 -0)
packages/sync-server/docker/edge-ubuntu.Dockerfile (+37 -0)

...and 80 more files

📄 Description


🔄 This issue represents a GitHub Pull Request. It cannot be merged through Gitea due to API limitations.

## 📋 Pull Request Information **Original PR:** https://github.com/actualbudget/actual/pull/4339 **Author:** [@MikesGlitch](https://github.com/MikesGlitch) **Created:** 2/8/2025 **Status:** ❌ Closed **Base:** `master` ← **Head:** `test-server-workflows` --- ### 📝 Commits (10+) - [`a1af1ff`](https://github.com/actualbudget/actual/commit/a1af1ff3d286840f164e76ce4ff099252fe043d9) Add `express-rate-limit` (#187) - [`bc93604`](https://github.com/actualbudget/actual/commit/bc936045769c8c92b4fe791d9088ea9f476435db) :bookmark: (23.4.1) fix rule creation from transaction list (#188) - [`104c980`](https://github.com/actualbudget/actual/commit/104c9803f76ee74794dc9d3b71b96606ceed3df7) Add a password set/reset script (#186) - [`652d75a`](https://github.com/actualbudget/actual/commit/652d75a939eda0d60f79d6efc50a866aafbffdeb) Add a handler for AxiosError errors (#189) - [`2f54a94`](https://github.com/actualbudget/actual/commit/2f54a948bef3838d5af66d68e2d9050cab023a59) :bookmark: (23.4.2) revert back to old autocomplete & keyboard shortcut fix (#192) - [`7c744f0`](https://github.com/actualbudget/actual/commit/7c744f0e3d2da3801a886cd6a8637883c6070fae) Add a field with all transactions to /nordigen/transactions endpoint (#190) - [`996f238`](https://github.com/actualbudget/actual/commit/996f238648212cdc33ee0fe47b145b6f5a6a62ab) Remove the unused `migrations` folder (#195) - [`d60bb6a`](https://github.com/actualbudget/actual/commit/d60bb6a19eb14549051e1295c0c42cdfa68e418b) App secret service (#194) - [`fb6dc5e`](https://github.com/actualbudget/actual/commit/fb6dc5e8f1b59627657ba239b3936cb0990db976) :bug: (nordigen) return JSON response for the secrets API (#197) - [`9169bfa`](https://github.com/actualbudget/actual/commit/9169bfabadeb0a63b45ca4895c0657ad82df6cb7) :bookmark: (23.5.0) various improvements (#200) ### 📊 Changes **156 files changed** (+16697 additions, -70 deletions) <details> <summary>View changed files</summary> 📝 `.github/workflows/build.yml` (+14 -0) ➕ `.github/workflows/docker-edge.yml` (+85 -0) ➕ `.github/workflows/docker-release.yml` (+88 -0) 📝 `package.json` (+1 -0) 📝 `packages/loot-core/package.json` (+1 -0) ➕ `packages/sync-server/.dockerignore` (+12 -0) ➕ `packages/sync-server/.editorconfig` (+11 -0) ➕ `packages/sync-server/.eslintignore` (+6 -0) ➕ `packages/sync-server/.eslintrc.cjs` (+21 -0) ➕ `packages/sync-server/.gitignore` (+33 -0) ➕ `packages/sync-server/.node-version` (+1 -0) ➕ `packages/sync-server/.prettierrc.json` (+4 -0) ➕ `packages/sync-server/LICENSE.txt` (+7 -0) ➕ `packages/sync-server/README.md` (+22 -0) ➕ `packages/sync-server/app.js` (+11 -0) ➕ `packages/sync-server/babel.config.json` (+3 -0) ➕ `packages/sync-server/docker-compose.yml` (+29 -0) ➕ `packages/sync-server/docker/download-artifacts.sh` (+14 -0) ➕ `packages/sync-server/docker/edge-alpine.Dockerfile` (+37 -0) ➕ `packages/sync-server/docker/edge-ubuntu.Dockerfile` (+37 -0) _...and 80 more files_ </details> ### 📄 Description <!-- Thank you for submitting a pull request! Make sure to follow the instructions to write release notes for your PR — it should only take a minute or two: https://github.com/actualbudget/docs#writing-good-release-notes --> --- <sub>🔄 This issue represents a GitHub Pull Request. It cannot be merged through Gitea due to API limitations.</sub>
GiteaMirror added the pull-request label 2026-02-28 21:10:37 -06:00
Sign in to join this conversation.
1 Participants
Notifications
Due Date
No due date set.
Dependencies

No dependencies set.

Reference: github-starred/actual#5325