File tree Expand file tree Collapse file tree 2 files changed +5
-2
lines changed Expand file tree Collapse file tree 2 files changed +5
-2
lines changed Original file line number Diff line number Diff line change @@ -129,10 +129,12 @@ jobs:
129
129
working-directory : examples/with-plain-javascript
130
130
run : |
131
131
npm i
132
+ echo "Dependencies installed"
132
133
app_log=$(mktemp)
133
134
npm start > "$app_log" 2>&1 &
134
135
135
136
app_pid=$!
137
+ echo "App started"
136
138
sleep 3
137
139
kill "$app_pid" 2>/dev/null
138
140
@@ -489,7 +491,8 @@ jobs:
489
491
xcode-version : 14.3
490
492
491
493
- name : build driver
492
- run : npm i && npm run build && echo "DRIVER=$(npm pack --json | jq '.[0].filename')" >> $GITHUB_ENV
494
+ # distutils is required for the driver build and it was removed since python 3.13
495
+ run : python3 -m pip install setuptools && npm i && npm run build && echo "DRIVER=$(npm pack --json | jq '.[0].filename')" >> $GITHUB_ENV
493
496
494
497
- name : install driver
495
498
working-directory : examples/with-javascript-expo
Original file line number Diff line number Diff line change 1
1
{
2
2
"name" : " @sqlitecloud/drivers" ,
3
- "version" : " 1.0.435 " ,
3
+ "version" : " 1.0.436 " ,
4
4
"description" : " SQLiteCloud drivers for Typescript/Javascript in edge, web and node clients" ,
5
5
"main" : " ./lib/index.js" ,
6
6
"types" : " ./lib/index.d.ts" ,
You can’t perform that action at this time.
0 commit comments