Skip to content

Commit 4fbd0bd

Browse files
committed
fix CI
1 parent 711a01b commit 4fbd0bd

File tree

1 file changed

+6
-4
lines changed

1 file changed

+6
-4
lines changed

.github/workflows/publish.yml

Lines changed: 6 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -13,9 +13,6 @@ jobs:
1313
name: "Publish new version to NPM"
1414
runs-on: ubuntu-latest
1515
timeout-minutes: 5
16-
defaults:
17-
run:
18-
working-directory: ./packages/libsql-client
1916
env:
2017
NODE_OPTIONS: "--trace-warnings"
2118
NPM_TOKEN: ${{ secrets.NPM_TOKEN }}
@@ -32,8 +29,13 @@ jobs:
3229
run: "npm ci && npm run build"
3330
working-directory: ./packages/libsql-core
3431

35-
- name: "Install npm dependencies"
32+
- name: "Install npm dependencies (client)"
3633
run: "npm ci"
34+
working-directory: ./packages/libsql-client
35+
36+
- name: "Install npm dependencies (client wasm)"
37+
run: "npm ci"
38+
working-directory: ./packages/libsql-client-wasm
3739

3840
- name: "Publish pre-release version"
3941
if: contains(github.ref, '-pre')

0 commit comments

Comments
 (0)