Skip to content

Commit

Permalink
chore: 워크플로우 변경
Browse files Browse the repository at this point in the history
  • Loading branch information
ghdtjgus76 committed May 18, 2024
1 parent 7461f47 commit 05a70b6
Show file tree
Hide file tree
Showing 4 changed files with 20 additions and 15 deletions.
10 changes: 6 additions & 4 deletions .github/workflows/a11y-test.yml
Original file line number Diff line number Diff line change
Expand Up @@ -14,11 +14,13 @@ jobs:
accessibility:
runs-on: ubuntu-latest
needs: setup-node-pnpm
steps:
- uses: actions/checkout@v2
steps:
- name: Install Pnpm
uses: pnpm/action-setup@v3
with:
fetch-depth: 0

version: 8
run_install: false

- name: Install Dependency
run: pnpm install --no-frozen-lockfile
working-directory: packages/wow-ui
Expand Down
6 changes: 4 additions & 2 deletions .github/workflows/deploy-chromatic.yml
Original file line number Diff line number Diff line change
Expand Up @@ -15,9 +15,11 @@ jobs:
runs-on: ubuntu-latest
needs: setup-node-pnpm
steps:
- uses: actions/checkout@v2
- name: Install Pnpm
uses: pnpm/action-setup@v3
with:
fetch-depth: 0
version: 8
run_install: false

- name: Install Dependency
run: pnpm install --no-frozen-lockfile
Expand Down
9 changes: 6 additions & 3 deletions .github/workflows/release.yml
Original file line number Diff line number Diff line change
Expand Up @@ -15,9 +15,12 @@ jobs:
runs-on: ubuntu-latest
needs: setup-node-pnpm
steps:
- name: Checkout Repo
uses: actions/checkout@v3

- 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
Expand Down
10 changes: 4 additions & 6 deletions .github/workflows/setup-node-pnpm.yml
Original file line number Diff line number Diff line change
Expand Up @@ -7,6 +7,10 @@ jobs:
setup:
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@v2
with:
fetch-depth: 0

- name: Setup Node.js
uses: actions/setup-node@v3
with:
Expand All @@ -19,9 +23,3 @@ jobs:
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

0 comments on commit 05a70b6

Please sign in to comment.