Skip to content

Commit 9ecdd69

Browse files
committed
Fix ci:test script
1 parent 7109d89 commit 9ecdd69

File tree

2 files changed

+5
-3
lines changed

2 files changed

+5
-3
lines changed

.github/workflows/main.yaml

Lines changed: 2 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -140,7 +140,8 @@ jobs:
140140
cache: 'pnpm'
141141
registry-url: 'https://registry.npmjs.org'
142142
- run: npm run ci:publish
143-
- run: npm run build
143+
- run: npm run build:node
144+
- run: npm run build:web
144145
- run: npm publish
145146
env:
146147
NODE_AUTH_TOKEN: ${{ secrets.NPM_AUTOMATION_TOKEN }}

package.json

Lines changed: 3 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -24,13 +24,14 @@
2424
"install:core": "pnpm install --filter @weaviate/core --no-frozen-lockfile",
2525
"install:node": "pnpm install --filter @weaviate/node --no-frozen-lockfile",
2626
"install:web": "pnpm install --filter @weaviate/web --no-frozen-lockfile",
27+
"install:test": "pnpm install --filter @weaviate/test --no-frozen-lockfile",
2728
"build:core": "pnpm --filter @weaviate/core... run build",
2829
"build:node": "pnpm --filter @weaviate/node... run build",
2930
"build:web": "pnpm --filter @weaviate/web... run build",
3031
"build": "npm run build:core && npm run build:node && npm run build:web",
3132
"ci:checks": "npm run install:core && npm run build:core && npm run install:node && npm run install:web",
32-
"ci:test": "npm run ci:checks && npm run build:node",
33-
"ci:publish": "npm run ci:test && npm run build:web"
33+
"ci:test": "npm run ci:checks && npm run build:node && npm run install:test",
34+
"ci:publish": "npm run ci:checks"
3435
},
3536
"repository": {
3637
"type": "git",

0 commit comments

Comments
 (0)