[Feature/559] 2주년 기념 픽픽픽 리뉴얼건 dev머지 #1064
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 |