Skip to content
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
2 changes: 1 addition & 1 deletion Dockerfile
Original file line number Diff line number Diff line change
Expand Up @@ -38,7 +38,7 @@ RUN apt-get update && apt-get install -y --no-install-recommends \
git \
ca-certificates \
# Add Node.js repository and install
&& curl -fsSL https://deb.nodesource.com/setup_lts.x | bash - \
&& curl -fsSL https://deb.nodesource.com/setup_22.x | bash - \
&& apt-get install -y nodejs \
&& apt-get clean && rm -rf /var/lib/apt/lists/*

Expand Down
3 changes: 3 additions & 0 deletions test-scripts/test-nodejs.sh
Original file line number Diff line number Diff line change
Expand Up @@ -3,6 +3,9 @@ set -e

echo "=== Node.js SDK Command Tests ==="

echo "Checking Node.js version..."
node -v

# Find the project root directory
if [[ -d "/workspaces/scanbot-sdk-example-linux/examples/nodejs" ]]; then
cd /workspaces/scanbot-sdk-example-linux/examples/nodejs
Expand Down
Loading