Skip to content

Commit

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

jobs:
interaction-and-accessibility:
accessibility:
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@v2
Expand All @@ -30,8 +30,13 @@ jobs:
run: pnpm install --no-frozen-lockfile
working-directory: packages/wow-ui

- name: Build Storybook
run: pnpm run build-storybook --quiet
working-directory: packages/wow-ui

- name: Serve Storybook and run tests
run: |
pnpm concurrently -k -s first -n "SB,TEST" -c "magenta,blue" \
"pnpm http-server storybook-static --port 6006 --silent" \
"pnpm wait-on tcp:6006 && pnpm test-storybook"
working-directory: packages/wow-ui

0 comments on commit cc8966f

Please sign in to comment.