[Fix] Button 컴포넌트 children으로 아이콘도 수용 가능하도록 수정 #305
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
name: "a11y-test" | |
on: | |
pull_request: | |
branches: | |
- main | |
paths: | |
- packages/wow-ui/src/** | |
jobs: | |
accessibility: | |
runs-on: ubuntu-latest | |
steps: | |
- uses: actions/checkout@v2 | |
with: | |
fetch-depth: 0 | |
- name: Setup Node.js | |
uses: actions/setup-node@v3 | |
with: | |
node-version: 20 | |
- name: Cache Dependencies | |
uses: actions/cache@v2 | |
with: | |
path: ~/.pnpm-store | |
key: ${{ runner.os }}-pnpm-${{ hashFiles('**/pnpm-lock.yaml') }} | |
restore-keys: | | |
${{ runner.os }}-pnpm- | |
- name: Install Pnpm | |
uses: pnpm/action-setup@v3 | |
with: | |
version: 8 | |
run_install: false | |
- name: Install Dependency | |
run: pnpm install --no-frozen-lockfile | |
working-directory: packages/wow-ui | |
- name: Install Playwright | |
run: pnpm dlx playwright install --with-deps && npx playwright install | |
working-directory: packages/wow-ui | |
- name: Build Packages | |
run: pnpm build | |
- 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 Storybook process | |
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 |