From ede9453d19fef03aaef47aec6f0bca9e01147ffa Mon Sep 17 00:00:00 2001 From: Aki Hamano Date: Sat, 19 Apr 2025 11:12:35 +0900 Subject: [PATCH] Automated Testing: Skip storybook smoke test --- .github/workflows/storybook-check.yml | 22 +++++++++++----------- 1 file changed, 11 insertions(+), 11 deletions(-) diff --git a/.github/workflows/storybook-check.yml b/.github/workflows/storybook-check.yml index 9b9775e0582a5f..b599dfa045885a 100644 --- a/.github/workflows/storybook-check.yml +++ b/.github/workflows/storybook-check.yml @@ -27,14 +27,14 @@ jobs: - name: Build Storybook run: npm run storybook:build - - name: Install Playwright dependencies - run: npx playwright install --with-deps - - - name: Serve Storybook and run tests - run: | - npx concurrently -k -s first -n "SB,TEST" -c "magenta,blue" \ - "npx http-server ./storybook/build --port 50240 --silent" \ - "npx wait-on tcp:127.0.0.1:50240 && \ - NODE_PATH=./node_modules \ - npx --package=@storybook/test-runner -- \ - test-storybook --url http://localhost:50240 --config-dir ./storybook" + # - name: Install Playwright dependencies + # run: npx playwright install --with-deps + + # - name: Serve Storybook and run tests + # run: | + # npx concurrently -k -s first -n "SB,TEST" -c "magenta,blue" \ + # "npx http-server ./storybook/build --port 50240 --silent" \ + # "npx wait-on tcp:127.0.0.1:50240 && \ + # NODE_PATH=./node_modules \ + # npx --package=@storybook/test-runner -- \ + # test-storybook --url http://localhost:50240 --config-dir ./storybook"