Skip to content

Commit

Permalink
Fix JS binding build, ignore Windows platform until #520 has been fixed
Browse files Browse the repository at this point in the history
  • Loading branch information
tdewolff committed Sep 24, 2022
1 parent 703df5e commit 6bb4cbd
Show file tree
Hide file tree
Showing 3 changed files with 4 additions and 3 deletions.
3 changes: 2 additions & 1 deletion .github/workflows/nodejs.yml
Original file line number Diff line number Diff line change
Expand Up @@ -47,7 +47,8 @@ jobs:
strategy:
fail-fast: false
matrix:
os: [ubuntu-latest, macos-latest, windows-2019]
#os: [ubuntu-latest, macos-latest, windows-2019]
os: [ubuntu-latest, macos-latest]

runs-on: ${{ matrix.os }}
steps:
Expand Down
2 changes: 1 addition & 1 deletion bindings/js/Makefile
Original file line number Diff line number Diff line change
Expand Up @@ -29,7 +29,7 @@ clean:
rm -rf prebuilds

test:
node test.js
npm test

.PHONY: all compile build publish clean test

2 changes: 1 addition & 1 deletion bindings/js/package.json
Original file line number Diff line number Diff line change
Expand Up @@ -28,7 +28,7 @@
],
"scripts": {
"install": "node-gyp-build",
"test": "node test/index.js && node test/worker.js"
"test": "node test/index.js"
},
"homepage": "https://github.com/tdewolff/minify#readme",
"bugs": {
Expand Down

0 comments on commit 6bb4cbd

Please sign in to comment.