fix: 구글 로그인 쿠키 이슈 해결 (프록시 설정) #84
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: CI | |
| on: | |
| push: | |
| branches: [main, develop] | |
| pull_request: | |
| branches: [main, develop] | |
| jobs: | |
| build: | |
| runs-on: ubuntu-latest | |
| steps: | |
| - name: Checkout code | |
| uses: actions/checkout@v4 | |
| - name: Setup Node.js | |
| uses: actions/setup-node@v4 | |
| with: | |
| node-version: 20 | |
| - name: Install dependencies | |
| run: yarn install | |
| - name: Run ESLint | |
| run: yarn lint | |
| - name: Run TypeScript check | |
| run: yarn tsc --noEmit || echo "TypeScript check not configured" | |
| - name: Run tests | |
| run: yarn test || echo "Tests not configured" | |
| - name: Build project | |
| run: yarn build |