[DP-562] 픽픽픽 메인 / 홈의 픽픽픽 컴포넌트 교체 #1063
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: Lint check | |
| on: pull_request | |
| jobs: | |
| build-test: | |
| name: Next Lint test | |
| runs-on: ubuntu-latest | |
| steps: | |
| - name: Checkout Code | |
| uses: actions/checkout@v2 | |
| - name: Set up Node.js | |
| uses: actions/setup-node@v2 | |
| with: | |
| node-version: '20' | |
| - name: Install Dependencies | |
| run: npm install -g pnpm | |
| - run: pnpm install | |
| - name: Run Lint | |
| run: pnpm lint |