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:
4242 target : x86_64-apple-darwin
4343 build : yarn build --target x86_64-apple-darwin --features openssl-vendored
4444 - 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
4646 target : x86_64-pc-windows-msvc
4747 - host : windows-latest
4848 build : yarn build --target i686-pc-windows-msvc
4949 target : i686-pc-windows-msvc
5050 - host : ubuntu-latest
5151 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
5353 - host : ubuntu-latest
5454 target : x86_64-unknown-linux-musl
5555 build : yarn build --target x86_64-unknown-linux-musl -x --features openssl-vendored
@@ -297,15 +297,14 @@ jobs:
297297 cache : yarn
298298 - name : Install dependencies
299299 run : yarn install
300- - name : create npm dirs
300+ - name : Create npm dirs
301301 working-directory : bindings/node
302302 run : yarn napi create-npm-dirs
303303 - name : Download all artifacts
304304 uses : actions/download-artifact@v4
305305 with :
306306 path : bindings/node/artifacts
307307 - name : Move artifacts
308- working-directory : bindings/node
309308 run : yarn artifacts
310309 - name : List packages
311310 run : ls -R ./npm
Load Diff This file was deleted.
Original file line number Diff line number Diff line change 3737 "build" : " napi build --platform --release" ,
3838 "build:debug" : " napi build --platform" ,
3939 "prepublishOnly" : " napi prepublish --no-gh-release" ,
40+ "lint" : " oxlint" ,
4041 "test" : " ava"
4142 },
4243 "packageManager" :
" [email protected] " ,
Original file line number Diff line number Diff line change @@ -121,3 +121,4 @@ ignorePaths:
121121 - cpp-linter/tests/**/*.diff
122122 - cpp-linter/tests/**/.clang-tidy
123123 - .vscode/extensions.json
124+ - .yarn/releases/*
Original file line number Diff line number Diff line change 77 "doc" : " docs"
88 },
99 "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"
1415 },
1516 "repository" : {
1617 "type" : " git" ,
You can’t perform that action at this time.
0 commit comments