Skip to content

Commit

Permalink
fix
Browse files Browse the repository at this point in the history
  • Loading branch information
wcjordan committed Aug 26, 2024
1 parent be1cc4d commit 5ce4c93
Show file tree
Hide file tree
Showing 2 changed files with 2 additions and 2 deletions.
2 changes: 1 addition & 1 deletion Jenkinsfile
Original file line number Diff line number Diff line change
Expand Up @@ -122,7 +122,7 @@ pipeline {
image: ${GAR_REPO}/chalk-ui-base:${SANITIZED_BUILD_TAG}
command: ["/bin/sh", "-c"]
args:
- npx http-server -p 9009 /js/storybook-static
- npx http-server -p 9009 /workspace/js/storybook-static
tty: true
ports:
- containerPort: 9009
Expand Down
2 changes: 1 addition & 1 deletion ui/Makefile
Original file line number Diff line number Diff line change
Expand Up @@ -60,7 +60,7 @@ test-storybook:

# NOTE stderr is suppressed here to avoid confusing messages from SIGKILL when finished. Remove if debugging
timeout 180 make run-test-container TEST_CMD="npx http-server --silent -p 9009 /workspace/js/storybook-static" TEST_ARGS="" \
DOCKER_ARGS="-p 9009 --network storybook-network --name storybook-test-instance" 2> /dev/null &
DOCKER_ARGS="-w /workspace/js -p 9009 --network storybook-network --name storybook-test-instance" 2> /dev/null &
sleep 10

# Capture output, but stop the storybook container before exiting with the result
Expand Down

0 comments on commit 5ce4c93

Please sign in to comment.