[Main to Dev] 2주년 기념 픽픽픽 prod 배포 #1075
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: Build test | |
| on: pull_request | |
| jobs: | |
| build-test: | |
| name: Next Build 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 Build | |
| run: pnpm build |