Skip to content

Commit

Permalink
chore: 잘못된 경로 설정 수정
Browse files Browse the repository at this point in the history
  • Loading branch information
ghdtjgus76 committed Sep 11, 2024
1 parent 015bb62 commit adcf32d
Show file tree
Hide file tree
Showing 3 changed files with 10 additions and 10 deletions.
4 changes: 2 additions & 2 deletions .github/workflows/chromatic_auto_deploy.yml
Original file line number Diff line number Diff line change
Expand Up @@ -43,8 +43,8 @@ jobs:
- name: 의존성 설치
run: |
chmod +x ../../../scripts/install-dependencies.sh
../../../scripts/install-dependencies.sh
chmod +x ./scripts/install-dependencies.sh
./scripts/install-dependencies.sh
- name: Check if token exists
run: |
Expand Down
8 changes: 4 additions & 4 deletions .github/workflows/label-vrt-update.yml
Original file line number Diff line number Diff line change
Expand Up @@ -44,13 +44,13 @@ jobs:
- name: 의존성 설치
run: |
chmod +x ../../../scripts/install-dependencies.sh
../../../scripts/install-dependencies.sh
chmod +x ./scripts/install-dependencies.sh
./scripts/install-dependencies.sh
- name: Playwright 설치
run: |
chmod +x ../../../scripts/install-playwright.sh
../../../scripts/install-playwright.sh
chmod +x ./scripts/install-playwright.sh
./scripts/install-playwright.sh
- name: 스토리북 빌드
run: pnpm run build-storybook
Expand Down
8 changes: 4 additions & 4 deletions .github/workflows/pr-vrt.yml
Original file line number Diff line number Diff line change
Expand Up @@ -45,13 +45,13 @@ jobs:
- name: 의존성 설치
run: |
chmod +x ../../../scripts/install-dependencies.sh
../../../scripts/install-dependencies.sh
chmod +x ./scripts/install-dependencies.sh
./scripts/install-dependencies.sh
- name: Playwright 설치
run: |
chmod +x ../../../scripts/install-playwright.sh
../../../scripts/install-playwright.sh
chmod +x ./scripts/install-playwright.sh
./scripts/install-playwright.sh
- name: 스토리북 빌드
run: pnpm run build-storybook
Expand Down

0 comments on commit adcf32d

Please sign in to comment.