Skip to content

Commit

Permalink
feat: test 워크플로우 추가
Browse files Browse the repository at this point in the history
  • Loading branch information
ghdtjgus76 committed May 18, 2024
1 parent a5e8f84 commit d2ec267
Showing 1 changed file with 44 additions and 0 deletions.
44 changes: 44 additions & 0 deletions .github/workflows/test.yml
Original file line number Diff line number Diff line change
@@ -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

0 comments on commit d2ec267

Please sign in to comment.