Skip to content

fix: 구글 로그인 쿠키 이슈 해결 (프록시 설정) #84

fix: 구글 로그인 쿠키 이슈 해결 (프록시 설정)

fix: 구글 로그인 쿠키 이슈 해결 (프록시 설정) #84

Workflow file for this run

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