[fix/TK-212]:위비카드 발급시 카드 연결여부 즉시 업데이트 #359
Workflow file for this run
This file contains hidden or 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: 'Quality Checks' | |
| on: | |
| pull_request: | |
| branches: | |
| - dev | |
| paths-ignore: | |
| - '.github/**' | |
| - 'pnpm-lock.yaml' | |
| - 'package.json' | |
| jobs: | |
| quality: | |
| runs-on: ubuntu-latest | |
| steps: | |
| - uses: actions/checkout@v3 | |
| with: | |
| fetch-depth: 0 | |
| - uses: pnpm/action-setup@v2 | |
| with: | |
| version: 8.15.6 | |
| - uses: actions/setup-node@v3 | |
| with: | |
| node-version: '21' | |
| cache: 'pnpm' | |
| - name: Install dependencies | |
| run: pnpm install | |
| - name: Build packages | |
| run: pnpm build --filter "./packages/ui" | |
| - name: Type check | |
| run: pnpm type-check | |
| - name: Lint check | |
| run: pnpm lint | |
| - name: Build all | |
| run: pnpm build |