Skip to content

Commit

Permalink
chore: 웹 접근성 자동화 워크플로우 수정
Browse files Browse the repository at this point in the history
  • Loading branch information
ghdtjgus76 committed May 13, 2024
1 parent 7e055b9 commit 06d56c6
Showing 1 changed file with 5 additions and 1 deletion.
6 changes: 5 additions & 1 deletion .github/workflows/a11y-test.yml
Original file line number Diff line number Diff line change
Expand Up @@ -43,5 +43,9 @@ jobs:
working-directory: packages/wow-ui

- name: Kill pnpm storybook process
run: pkill -f "pnpm storybook"
run: |
PID=$(ps -ef | grep "pnpm storybook" | grep -v grep | awk '{print $2}')
if [ -n "$PID" ]; then
kill -9 $PID
fi
working-directory: packages/wow-ui

0 comments on commit 06d56c6

Please sign in to comment.