We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent c28523e commit 3bc31a8Copy full SHA for 3bc31a8
.github/workflows/ci.yml
@@ -170,6 +170,13 @@ jobs:
170
node-version: "20"
171
- name: Install
172
run: emmake npm install --build-from-source
173
+ - name: Verify emscripten versions match
174
+ run: |
175
+ EMSCRIPTEN_VERSION_LIBVIPS=$(node -p "require('@img/sharp-libvips-dev-wasm32/versions').emscripten")
176
+ EMSCRIPTEN_VERSION_SHARP=$(emcc -dumpversion)
177
+ echo "libvips built with emscripten $EMSCRIPTEN_VERSION_LIBVIPS"
178
+ echo "sharp built with emscripten $EMSCRIPTEN_VERSION_SHARP"
179
+ test "$EMSCRIPTEN_VERSION_LIBVIPS" = "$EMSCRIPTEN_VERSION_SHARP"
180
- name: Test
181
run: emmake npm test
182
- name: Test packaging
0 commit comments