[#118] 커뮤니티 댓글 및 커뮤니티 수정 페이지 tanstack query 도입 및 리팩토링 (#139) #556
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-apps | |
| on: [push] | |
| jobs: | |
| build: | |
| runs-on: ubuntu-latest | |
| strategy: | |
| matrix: | |
| node-version: [20.10.0] | |
| os: [ubuntu-latest] | |
| steps: | |
| - name: Git Checkout | |
| uses: actions/checkout@v4 | |
| - name: Setup Node env | |
| uses: actions/setup-node@v4 | |
| with: | |
| node-version: ${{ matrix.node-version }} | |
| cache: 'yarn' | |
| - name: Install dependencies | |
| run: yarn | |
| - name: Build express-server | |
| run: yarn workspace express-server build | |
| - name: Build next-client | |
| env: | |
| GOOGLE_CLIENT_ID: ${{ secrets.GOOGLE_CLIENT_ID }} | |
| GOOGLE_CLIENT_SECRET: ${{ secrets.GOOGLE_CLIENT_SECRET }} | |
| NEXTAUTH_SECRET: ${{ secrets.NEXTAUTH_SECRET }} | |
| NEXTAUTH_URL: ${{ secrets.NEXTAUTH_URL }} | |
| NEXT_PUBLIC_LOCAL_BACKEND_URL: ${{ secrets.NEXT_PUBLIC_LOCAL_BACKEND_URL }} | |
| NEXT_PUBLIC_KAKAO_MAP_KEY: ${{ secrets.NEXT_PUBLIC_KAKAO_MAP_KEY }} | |
| DATA_API_KEY: ${{ secrets.DATA_API_KEY }} | |
| run: yarn workspace next-client build |