From cc8966fd7f03596b50c37b6fb7e35ffe87346e0a Mon Sep 17 00:00:00 2001 From: ghdtjgus76 Date: Mon, 13 May 2024 16:05:19 +0900 Subject: [PATCH] =?UTF-8?q?fix:=20=EC=9B=B9=20=EC=A0=91=EA=B7=BC=EC=84=B1?= =?UTF-8?q?=20=EC=9E=90=EB=8F=99=ED=99=94=20=EC=9B=8C=ED=81=AC=ED=94=8C?= =?UTF-8?q?=EB=A1=9C=EC=9A=B0=20=EC=88=98=EC=A0=95?= MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit --- .github/workflows/a11y-test.yml | 7 ++++++- 1 file changed, 6 insertions(+), 1 deletion(-) diff --git a/.github/workflows/a11y-test.yml b/.github/workflows/a11y-test.yml index 3447b3ba..da661914 100644 --- a/.github/workflows/a11y-test.yml +++ b/.github/workflows/a11y-test.yml @@ -8,7 +8,7 @@ on: - packages/wow-ui/src/** jobs: - interaction-and-accessibility: + accessibility: runs-on: ubuntu-latest steps: - uses: actions/checkout@v2 @@ -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