remove(test): button test코드 제거 #1
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
name: UI Package Test | |
on: | |
push: | |
branches: | |
- '**' # 모든 브랜치 | |
paths: | |
- 'packages/ui/**' | |
pull_request: | |
branches: [main, develop] | |
paths: | |
- 'packages/ui/**' | |
jobs: | |
test: | |
runs-on: ubuntu-latest | |
defaults: | |
run: | |
working-directory: packages/ui | |
steps: | |
- uses: actions/checkout@v3 | |
- uses: actions/setup-node@v3 | |
with: | |
node-version: '18' | |
- name: Install dependencies | |
run: | | |
yarn | |
yarn add -D jest @testing-library/jest-dom @testing-library/dom | |
- name: Run test script | |
run: echo "Test script running" # 임시 테스트 스크립트 |