We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 711a01b commit 4fbd0bdCopy full SHA for 4fbd0bd
.github/workflows/publish.yml
@@ -13,9 +13,6 @@ jobs:
13
name: "Publish new version to NPM"
14
runs-on: ubuntu-latest
15
timeout-minutes: 5
16
- defaults:
17
- run:
18
- working-directory: ./packages/libsql-client
19
env:
20
NODE_OPTIONS: "--trace-warnings"
21
NPM_TOKEN: ${{ secrets.NPM_TOKEN }}
@@ -32,8 +29,13 @@ jobs:
32
29
run: "npm ci && npm run build"
33
30
working-directory: ./packages/libsql-core
34
31
35
- - name: "Install npm dependencies"
+ - name: "Install npm dependencies (client)"
36
run: "npm ci"
+ working-directory: ./packages/libsql-client
+
+ - name: "Install npm dependencies (client wasm)"
37
+ run: "npm ci"
38
+ working-directory: ./packages/libsql-client-wasm
39
40
- name: "Publish pre-release version"
41
if: contains(github.ref, '-pre')
0 commit comments