Skip to content

Commit 0feb05d

Browse files
author
Daniele Briggi
committed
feat(arm): run github actions on arm too
1 parent 490844e commit 0feb05d

File tree

3 files changed

+10
-2
lines changed

3 files changed

+10
-2
lines changed

.github/workflows/test.yml

Lines changed: 9 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -10,7 +10,11 @@ jobs:
1010
code-test:
1111
name: 'Code Test'
1212
timeout-minutes: 20
13-
runs-on: ubuntu-latest
13+
runs-on: ${{ matrix.os }}
14+
strategy:
15+
matrix:
16+
os: [ubuntu-latest]
17+
arch: [x64, arm64]
1418
steps:
1519
- uses: actions/checkout@v4
1620
- uses: actions/setup-node@v4
@@ -36,6 +40,10 @@ jobs:
3640
strategy:
3741
matrix:
3842
os: [ubuntu-latest, macos-latest, windows-latest]
43+
arch: [x64, arm64]
44+
exclude:
45+
- os: windows-latest
46+
arch: arm64
3947

4048
defaults:
4149
run:

bun.lockb

-338 Bytes
Binary file not shown.

package.json

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
{
22
"name": "@sqlitecloud/drivers",
3-
"version": "1.0.354",
3+
"version": "1.0.364",
44
"description": "SQLiteCloud drivers for Typescript/Javascript in edge, web and node clients",
55
"main": "./lib/index.js",
66
"types": "./lib/index.d.ts",

0 commit comments

Comments
 (0)