Skip to content

Commit

Permalink
Merge pull request #590 from pgoos/fix/enable-tests-ci2
Browse files Browse the repository at this point in the history
fix: enable test run in CI for core package
jkbrooks authored Nov 25, 2024

Unverified

This commit is not signed, but one or more authors requires that any commit attributed to them is signed.
2 parents a4bf4c7 + 4172899 commit 031b961
Showing 3 changed files with 3 additions and 4 deletions.
4 changes: 2 additions & 2 deletions .github/workflows/ci.yaml
Original file line number Diff line number Diff line change
@@ -33,8 +33,8 @@ jobs:
echo "TEST_DATABASE_CLIENT=sqlite" > packages/core/.env.test
echo "NODE_ENV=test" >> packages/core/.env.test
# - name: Run tests
# run: cd packages/core && pnpm test // YOLO FOR NOW
- name: Run tests
run: cd packages/core && pnpm test

- name: Build packages
run: pnpm run build
2 changes: 1 addition & 1 deletion packages/core/src/defaultCharacter.ts
Original file line number Diff line number Diff line change
@@ -5,7 +5,7 @@ export const defaultCharacter: Character = {
username: "eliza",
plugins: [],
clients: [],
modelProvider: ModelProviderName.LLAMALOCAL,
modelProvider: ModelProviderName.OLLAMA,
settings: {
secrets: {},
voice: {
1 change: 0 additions & 1 deletion packages/core/src/tests/goals.test.ts
Original file line number Diff line number Diff line change
@@ -1,4 +1,3 @@
import { CacheManager, MemoryCacheAdapter } from "../cache";
import {
getGoals,
formatGoalsAsString,

0 comments on commit 031b961

Please sign in to comment.