File tree Expand file tree Collapse file tree 5 files changed +10
-9
lines changed Expand file tree Collapse file tree 5 files changed +10
-9
lines changed Original file line number Diff line number Diff line change @@ -42,14 +42,14 @@ jobs:
42
42
target : x86_64-apple-darwin
43
43
build : yarn build --target x86_64-apple-darwin --features openssl-vendored
44
44
- host : windows-latest
45
- build : yarn build --target x86_64-pc-windows-msvc --features openssl-vendored
45
+ build : yarn build --target x86_64-pc-windows-msvc
46
46
target : x86_64-pc-windows-msvc
47
47
- host : windows-latest
48
48
build : yarn build --target i686-pc-windows-msvc
49
49
target : i686-pc-windows-msvc
50
50
- host : ubuntu-latest
51
51
target : x86_64-unknown-linux-gnu
52
- build : yarn build --target x86_64-unknown-linux-gnu --use-napi-cross --features openssl-vendored
52
+ build : yarn build --target x86_64-unknown-linux-gnu --use-napi-cross
53
53
- host : ubuntu-latest
54
54
target : x86_64-unknown-linux-musl
55
55
build : yarn build --target x86_64-unknown-linux-musl -x --features openssl-vendored
@@ -297,15 +297,14 @@ jobs:
297
297
cache : yarn
298
298
- name : Install dependencies
299
299
run : yarn install
300
- - name : create npm dirs
300
+ - name : Create npm dirs
301
301
working-directory : bindings/node
302
302
run : yarn napi create-npm-dirs
303
303
- name : Download all artifacts
304
304
uses : actions/download-artifact@v4
305
305
with :
306
306
path : bindings/node/artifacts
307
307
- name : Move artifacts
308
- working-directory : bindings/node
309
308
run : yarn artifacts
310
309
- name : List packages
311
310
run : ls -R ./npm
Load Diff This file was deleted.
Original file line number Diff line number Diff line change 37
37
"build" : " napi build --platform --release" ,
38
38
"build:debug" : " napi build --platform" ,
39
39
"prepublishOnly" : " napi prepublish --no-gh-release" ,
40
+ "lint" : " oxlint" ,
40
41
"test" : " ava"
41
42
},
42
43
"packageManager" :
" [email protected] " ,
Original file line number Diff line number Diff line change @@ -121,3 +121,4 @@ ignorePaths:
121
121
- cpp-linter/tests/**/*.diff
122
122
- cpp-linter/tests/**/.clang-tidy
123
123
- .vscode/extensions.json
124
+ - .yarn/releases/*
Original file line number Diff line number Diff line change 7
7
"doc" : " docs"
8
8
},
9
9
"scripts" : {
10
- "build" : " cd bindings/node && napi build --platform --release" ,
11
- "build:debug" : " cd bindings/node && napi build --platform" ,
12
- "test" : " cd bindings/node && ava" ,
13
- "lint" : " cd bindings/node && yarn run oxlint"
10
+ "artifacts" : " cd bindings/node && yarn artifacts" ,
11
+ "build" : " cd bindings/node && yarn build" ,
12
+ "build:debug" : " cd bindings/node && yarn build:debug" ,
13
+ "test" : " cd bindings/node && yarn test" ,
14
+ "lint" : " cd bindings/node && yarn lint"
14
15
},
15
16
"repository" : {
16
17
"type" : " git" ,
You can’t perform that action at this time.
0 commit comments