[Feature] 프로젝트 초기 세팅 #5
Workflow file for this run
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@v2 | |
with: | |
node-version: 20.x | |
- 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: 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 |