Skip to content
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
Show all changes
17 commits
Select commit Hold shift + click to select a range
a3d958b
chore: unify typecheck script naming across monorepo
sterdsterd Apr 7, 2026
26df680
fix(native): update QnA mapping logic for chat results
sterdsterd Apr 7, 2026
fa7a4bd
fix(native): update ScrapCard types for selectedItems
sterdsterd Apr 7, 2026
b2589a0
chore: add .prettierignore file to exclude build artifacts
sterdsterd Apr 7, 2026
400be55
chore(ci): update CI workflow for pnpm and Node.js setup
sterdsterd Apr 7, 2026
d11dac1
chore(ci): remove unused GitHub Actions workflows
sterdsterd Apr 7, 2026
a45c8af
chore: update pull request template for Linear integration
sterdsterd Apr 7, 2026
daacb75
chore: remove issue templates for bug reports and feature requests
sterdsterd Apr 7, 2026
4ccef2e
style: Apply consistent formatting and lint fixes across the codebase
sterdsterd Apr 7, 2026
f22e4f9
chore: update .prettierignore to exclude .github directory
sterdsterd Apr 7, 2026
577885e
chore: update .gitignore to exclude Claude-related files
sterdsterd Apr 7, 2026
5c8f35c
lint(admin): remove unused imports and commented-out code
sterdsterd Apr 7, 2026
9ba6a9f
lint(pointer-editor-v2): optimize uploadOptions with useMemo
sterdsterd Apr 7, 2026
a527b91
chore(ci): update CI scripts to use scoped Turbo commands
sterdsterd Apr 7, 2026
c4d84af
chore: remove local settings file for Claude
sterdsterd Apr 7, 2026
4125297
chore(ci): remove pnpm version pin in CI workflow
sterdsterd Apr 7, 2026
5c5ba33
chore: update .prettierignore and remove extra whitespace in
sterdsterd Apr 7, 2026
File filter

Filter by extension

Filter by extension


Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
14 changes: 0 additions & 14 deletions .claude/settings.local.json

This file was deleted.

33 changes: 0 additions & 33 deletions .github/ISSUE_TEMPLATE/bug_issue.yml

This file was deleted.

25 changes: 0 additions & 25 deletions .github/ISSUE_TEMPLATE/feature_issue.yml

This file was deleted.

55 changes: 23 additions & 32 deletions .github/pull_request_template.md
Original file line number Diff line number Diff line change
@@ -1,46 +1,37 @@
<!-- PR의 제목은 다음과 같은 규칙으로 작성해주세요 -->
<!-- Feature -> main: "[Feat/Service/#1] 로그인 기능 추가" -->
<!-- main -> pre-production: "[Deploy] v1.0.0 - 2025-01-05 QA" -->
<!-- pre-production -> production: "[Release] v1.0.0 - 2025-01-05 Production" -->
<!-- PR 제목 예시 -->
<!-- feature/* -> develop: "[feat/MAT-123] Linear 이슈 네임" -->
<!-- hotfix/* -> main: "[hotfix/MAT-123] Linear 이슈 네임" -->
<!-- develop -> main: "[release] v1.2.3 - yyyy-mm-dd" -->

## 📌 Related Issue Number
## Summary

<!-- Closes 키워드가 있어야 PR이 머지되었을 때 이슈가 자동으로 닫힙니다. -->
<!-- 이번 PR의 목적과 핵심 변경사항을 2-4줄로 적어주세요 -->

- Closes #1
## Linear

---
<!-- [MAT-123: Linear Issue Name / ci](https://linear.app/math-pointer/issue/MAT-123/linear-issue-name) 형식으로 적어주세요 -->
<!-- Linear Issue 페이지에서 복사 후 붙여넣기 하면 됩니다 -->

## Checklist
-

- [ ] 🎋 base 브랜치를 제대로 설정했나요? <!-- main 또는 pre-production -->
- [ ] 🖌️ PR 제목은 형식에 맞게 잘 작성했나요? <!-- e.g. [Feat/#1] 로그인 기능 추가 -->
- [ ] 🏗️ 빌드는 성공했나요? (pnpm build)
- [ ] 🧹 불필요한 코드는 제거했나요? e.g. console.log
- [ ] 🙇‍♂️ 리뷰어를 지정했나요?
- [ ] 🏷️ 라벨은 등록했나요?
## Changes

---
-
-
-

## ✅ Key Changes
## Testing

> 이번 PR에서 작업한 내용을 간략히 설명해주세요
<!-- 실행한 명령어, 수동 확인한 플로우, 테스트하지 않은 범위를 적어주세요 -->

1. 내용1
- 설명
2. 내용2
- 설명
-

---
## Risk / Impact

## 💡 New Insights & Learnings
- 영향 범위:
- 확인이 필요한 부분:
- 배포 시 유의사항:

- ***
## Screenshots / Video

## 📢 To Reviewers

- ***

## 📸 Screenshot or Video (Optional)

<!-- 이해하기 쉽도록 스크린샷을 첨부해주세요. -->
<!-- UI 변경이 있는 경우 첨부해주세요 -->
32 changes: 15 additions & 17 deletions .github/workflows/ci.yml
Original file line number Diff line number Diff line change
Expand Up @@ -3,39 +3,37 @@ name: CI
on:
pull_request:
branches:
- develop
- main
- pre-production

jobs:
ci:
runs-on: ubuntu-latest

env:
NEXT_PUBLIC_API_BASE_URL: ${{ secrets.NEXT_PUBLIC_API_BASE_URL }}

steps:
- name: Checkout repository
uses: actions/checkout@v3
uses: actions/checkout@v4

- name: Setup pnpm
uses: pnpm/action-setup@v4

- name: Setup Node.js
uses: actions/setup-node@v3
uses: actions/setup-node@v4
with:
node-version: '20'

- name: Install pnpm
run: npm install -g pnpm
cache: 'pnpm'

- name: Install dependencies
run: pnpm install
run: pnpm install --frozen-lockfile

- name: Run Lint
run: pnpm lint
- name: Run lint
run: pnpm ci:lint

- name: Check Prettier formatting
run: pnpm prettier --check "**/*.{js,ts,tsx,jsx,mjs,hbs,json,css,md}"
- name: Check formatting
run: pnpm format:check

- name: TypeScript Check
run: pnpm tsc --noEmit
- name: Type check
run: pnpm ci:typecheck

- name: Build project
run: pnpm build
run: pnpm ci:build
140 changes: 0 additions & 140 deletions .github/workflows/expo-deploy.yml

This file was deleted.

32 changes: 0 additions & 32 deletions .github/workflows/pre-production.yml

This file was deleted.

Loading
Loading