Skip to content

Commit

Permalink
chore: 웹 접근성 테스트 워크플로우 수정
Browse files Browse the repository at this point in the history
  • Loading branch information
ghdtjgus76 committed May 17, 2024
1 parent 387d23c commit 4249a1c
Showing 1 changed file with 6 additions and 3 deletions.
9 changes: 6 additions & 3 deletions .github/workflows/a11y-test.yml
Original file line number Diff line number Diff line change
Expand Up @@ -34,15 +34,18 @@ jobs:
run: pnpm dlx playwright install --with-deps
working-directory: packages/wow-ui

- name: Serve Storybook
run: nohup pnpm storybook &
- name: Start Storybook
run: |
nohup pnpm storybook &
sleep 10
curl --retry 10 --retry-connrefused http://localhost:6006
working-directory: packages/wow-ui

- name: Run tests
run: pnpm test-storybook
working-directory: packages/wow-ui

- name: Kill pnpm storybook process
- name: Kill Storybook process
run: |
PID=$(ps -ef | grep "pnpm storybook" | grep -v grep | awk '{print $2}')
if [ -n "$PID" ]; then
Expand Down

0 comments on commit 4249a1c

Please sign in to comment.