Skip to content

Commit 031b961

Browse files
authored
Merge pull request #590 from pgoos/fix/enable-tests-ci2
fix: enable test run in CI for core package
2 parents a4bf4c7 + 4172899 commit 031b961

File tree

3 files changed

+3
-4
lines changed

3 files changed

+3
-4
lines changed

.github/workflows/ci.yaml

+2-2
Original file line numberDiff line numberDiff line change
@@ -33,8 +33,8 @@ jobs:
3333
echo "TEST_DATABASE_CLIENT=sqlite" > packages/core/.env.test
3434
echo "NODE_ENV=test" >> packages/core/.env.test
3535
36-
# - name: Run tests
37-
# run: cd packages/core && pnpm test // YOLO FOR NOW
36+
- name: Run tests
37+
run: cd packages/core && pnpm test
3838

3939
- name: Build packages
4040
run: pnpm run build

packages/core/src/defaultCharacter.ts

+1-1
Original file line numberDiff line numberDiff line change
@@ -5,7 +5,7 @@ export const defaultCharacter: Character = {
55
username: "eliza",
66
plugins: [],
77
clients: [],
8-
modelProvider: ModelProviderName.LLAMALOCAL,
8+
modelProvider: ModelProviderName.OLLAMA,
99
settings: {
1010
secrets: {},
1111
voice: {

packages/core/src/tests/goals.test.ts

-1
Original file line numberDiff line numberDiff line change
@@ -1,4 +1,3 @@
1-
import { CacheManager, MemoryCacheAdapter } from "../cache";
21
import {
32
getGoals,
43
formatGoalsAsString,

0 commit comments

Comments
 (0)