From d2ec267fdf017e776c4b696ac8f49ee27306ef4c Mon Sep 17 00:00:00 2001 From: ghdtjgus76 Date: Sat, 18 May 2024 20:15:09 +0900 Subject: [PATCH] =?UTF-8?q?feat:=20test=20=EC=9B=8C=ED=81=AC=ED=94=8C?= =?UTF-8?q?=EB=A1=9C=EC=9A=B0=20=EC=B6=94=EA=B0=80?= MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit --- .github/workflows/test.yml | 44 ++++++++++++++++++++++++++++++++++++++ 1 file changed, 44 insertions(+) create mode 100644 .github/workflows/test.yml diff --git a/.github/workflows/test.yml b/.github/workflows/test.yml new file mode 100644 index 00000000..4d9b02ec --- /dev/null +++ b/.github/workflows/test.yml @@ -0,0 +1,44 @@ +name: "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: Run Tests + run: pnpm test + working-directory: packages/wow-ui +