Skip to content

Merge pull request #48 from SWYP-mingling/chore/convert-to-object #204

Merge pull request #48 from SWYP-mingling/chore/convert-to-object

Merge pull request #48 from SWYP-mingling/chore/convert-to-object #204

Workflow file for this run

name: CI
on:
push:
branches:
- main
- feature/**
pull_request:
branches:
- main
jobs:
build:
runs-on: ubuntu-latest
steps:
- name: Checkout
uses: actions/checkout@v4
- name: Install pnpm
uses: pnpm/action-setup@v3
with:
version: 10
- name: Set up Node.js
uses: actions/setup-node@v4
with:
node-version: 22
cache: 'pnpm'
- name: Install dependencies
run: pnpm install --frozen-lockfile
- name: Type Check
run: pnpm exec tsc --noEmit
- name: Lint Check
run: pnpm run lint
- name: Build Check
run: pnpm run build
env:
NEXT_PUBLIC_API_BASE_URL: ${{ secrets.NEXT_PUBLIC_API_BASE_URL }}
NEXT_PUBLIC_KAKAO_MAP_API_KEY: ${{ secrets.NEXT_PUBLIC_KAKAO_MAP_API_KEY }}