Skip to content

Commit 33c0c74

Browse files
fix: clean node_modules before install in Inferno CI (#186)
* update * Update * update * update * update * Update * update * update * update * update * update * update * update * update * update * update * update * fix: add Tailwind CSS platform-specific bindings to UI package * 🔄 Update version to 0.0.1-alpha.202510192313.43d526c (alpha) * update * 🔄 Update version to 0.0.1-alpha.202510192324.9132e30 (alpha) * update * 🔄 Update version to 0.0.1-alpha.202510192332.fade5ff1 (alpha) * update * update * update * Update * update * update * 🔄 Update version to 0.0.1-alpha.202510200023.0df686a2 (alpha) * update * 🔄 Update version to 0.0.1-alpha.202510200031.f21f4bdb (alpha) * update * 🔄 Update version to 0.0.1-alpha.202510200040.a76d17c1 (alpha) * update * update * 🔄 Update version to 0.0.1-alpha.202510200100.87153a59 (alpha) * update * 🔄 Update version to 0.0.1-alpha.202510200103.3d5677bc (alpha) * update * 🔄 Update version to 0.0.1-alpha.202510200107.59b0576a (alpha) * update * update * 🔄 Update version to 0.0.1-alpha.202510200205.3df5db6a (alpha) * update * 🔄 Update version to 0.0.1-alpha.202510201116.dc54f88f (alpha) * update * 🔄 Update version to 0.0.1-alpha.202510271951.64242ae4 (alpha) * update * 🔄 Update version to 0.0.1-alpha.202510272033.5d9df7aa (alpha) * update * update * refactor: migrate from openai SDK to Vercel AI SDK - Remove openai package dependency, use only @ai-sdk/openai + ai - Refactor assistant.ts to use streamText with tool() helper - Refactor rag-tools.ts to use embed/embedMany for embeddings - Update ChatMessage.tsx to use new token property names - Configure bunfig.toml to allow packages <7 days old (minimumReleaseAge=0) - Update dependencies: AI SDK, Elysia, Medplum, Radix UI, Tailwind, etc. - Update Keycloak to 26.4.0 in docker-compose Benefits: - Unified AI SDK with better TypeScript types - Cleaner API with automatic tool execution - Removes redundant openai package - Better streaming support All tests passing (58/59, 1 flaky integration test unrelated to changes) * chore: apply code formatting from pre-commit hooks * chore: apply code formatting and finalize AI SDK migration * 🔄 Update version to 0.0.1-alpha.202510272043.e17a02a3 (alpha) * fix: pre-commit hook now stages all modified files - Changed from 'git add **/package.json' to 'git add -u' - This prevents the loop where line ending changes weren't being staged - Ensures auto-formatted files are included in the commit * 🔄 Update version to 0.0.1-alpha.202510272045.e469fe1a (alpha) * update * 🔄 Update version to 0.0.1-alpha.202510300142.c1fe77db (alpha) * update * 🔄 Update version to 0.0.1-alpha.202510300839.c978c06e (alpha) * update * 🔄 Update version to 0.0.1-alpha.202511051116.e2d5e4cc (alpha) * update * 🔄 Update version to 0.0.1-alpha.202511141331.20cc2911 (alpha) * Update * 🔄 Update version to 0.0.1-alpha.202512261242.6b2a29a8 (alpha) * feat: add SMART compliance tests CI workflow with Inferno * 🔄 Update version to 0.0.1-alpha.202512271226.b948b11f (alpha) * fix: improve Inferno CI workflow with realm import and Ruby setup * 🔄 Update version to 0.0.1-alpha.202512271303.55df35ce (alpha) * fix: clean node_modules before install in Inferno CI --------- Co-authored-by: github-actions[bot] <github-actions[bot]@users.noreply.github.com> Co-authored-by: quotentiroler <quotentiroler@users.noreply.github.com>
1 parent 7affc91 commit 33c0c74

1 file changed

Lines changed: 3 additions & 1 deletion

File tree

.github/workflows/smart-compliance-tests.yml

Lines changed: 3 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -80,7 +80,9 @@ jobs:
8080
uses: ./.github/actions/setup-bun-version
8181

8282
- name: Install dependencies
83-
run: bun install
83+
run: |
84+
rm -rf node_modules */node_modules || true
85+
bun install --no-cache
8486
8587
- name: Build Backend
8688
run: |

0 commit comments

Comments
 (0)