git » sdk » commit b51bc38

Get npm deps for running tests

author Stephen Paul Weber
2026-05-11 15:35:33 UTC
committer Stephen Paul Weber
2026-05-11 15:46:23 UTC
parent 58d8fc1dc04e377a8b90f29b9cc3d769ad8d797d

Get npm deps for running tests

build-misc/Containerfile.image +2 -1

diff --git a/build-misc/Containerfile.image b/build-misc/Containerfile.image
index 24eb161..8c5df52 100644
--- a/build-misc/Containerfile.image
+++ b/build-misc/Containerfile.image
@@ -60,7 +60,7 @@ RUN mkdir /opt/haxe \
 # networks, including on our CI workers. Warrants further investigation.
 RUN printf '#!/bin/bash\nexec /usr/bin/node --tls-max-v1.2 "$@"' > /usr/local/bin/node \
 	&& chmod a+x /usr/local/bin/node \
-	&& npm install typescript
+	&& npm install typescript @sqlite.org/sqlite-wasm @playwright/test
 
 COPY Makefile *.hxml /usr/src/sdk/
 COPY . /usr/src/sdk/
@@ -69,6 +69,7 @@ RUN haxelib setup /opt/haxe
 ENV HAXE_STD_PATH=/opt/haxe/std
 RUN make hx-build-dep
 
+RUN cd npm && npm install
 RUN make ci
 
 RUN make -j$(nproc)