Skip to content
Navigation Menu
Sign in
Appearance settings
Platform
AI CODE CREATION
GitHub Copilot
Write better code with AI
GitHub Copilot app
Direct agents from issue to merge
MCP Registry
Integrate external tools
DEVELOPER WORKFLOWS
Actions
Automate any workflow
Codespaces
Instant dev environments
Issues
Plan and track work
Code Review
Manage code changes
Code Quality
Enforce quality at merge
APPLICATION SECURITY
GitHub Advanced Security
Find and fix vulnerabilities
Code security
Secure your code as you build
Secret protection
Stop leaks before they start
EXPLORE
Why GitHub
Documentation
Blog
Changelog
Marketplace
View all features
Solutions
BY COMPANY SIZE
Enterprises
Small and medium teams
Startups
Nonprofits
BY USE CASE
App Modernization
DevSecOps
DevOps
CI/CD
View all use cases
BY INDUSTRY
Healthcare
Financial services
Manufacturing
Government
View all industries
View all solutions
Resources
EXPLORE BY TOPIC
AI
Software Development
DevOps
Security
View all topics
EXPLORE BY TYPE
Customer stories
Events & webinars
Ebooks & reports
Business insights
GitHub Skills
SUPPORT & SERVICES
Documentation
Customer support
Community forum
Trust center
Partners
View all resources
Open Source
COMMUNITY
GitHub Sponsors
Fund open source developers
PROGRAMS
Security Lab
Maintainer Community
Accelerator
GitHub Stars
Archive Program
REPOSITORIES
Topics
Trending
Collections
Enterprise
ENTERPRISE SOLUTIONS
Enterprise platform
AI-powered developer platform
AVAILABLE ADD-ONS
GitHub Advanced Security
Enterprise-grade security features
Copilot for Business
Enterprise-grade AI features
Premium Support
Enterprise-grade 24/7 support
Pricing
Search
/
Sign in
Sign up
Appearance settings
You signed in with another tab or window.
Reload
to refresh your session.
You signed out in another tab or window.
Reload
to refresh your session.
You switched accounts on another tab or window.
Reload
to refresh your session.
Dismiss alert
{{ message }}
Uh oh!
There was an error while loading.
Please reload this page
.
cronozen
/
proof
Public
Notifications
You must be signed in to change notification settings
Fork
0
Star
1
Code
Issues
0
Pull requests
0
Actions
Projects
Security and quality
0
Insights
Additional navigation options
Code
Issues
Pull requests
Actions
Projects
Security and quality
Insights
Files
Expand file tree
main
Breadcrumbs
proof
/
.github
/
workflows
/
ci.yml
Copy path
View runs
Blame
More file actions
Blame
More file actions
Latest commit
History
History
History
51 lines (42 loc) · 1.86 KB
main
Breadcrumbs
proof
/
.github
/
workflows
/
ci.yml
Copy path
Top
File metadata and controls
Code
Blame
51 lines (42 loc) · 1.86 KB
Raw
Copy raw file
Download raw file
Open symbols panel
Edit and raw actions
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
# CI — typecheck + tests
#
# 이 레포에는 CI 가 없었다. 그래서 `@locked regression` 테스트 2건이 몇 달째 빨간불인 채
# 아무도 모르고 있었다(2026-08-05 발견). 테스트가 있다는 것과 테스트가 돈다는 것은 다르다.
#
# 여기서 막는 것:
# - 타입 오류
# - 해시 직렬화 규칙 변경(= 기존 체인 해시 전부 무효화) — dpu-core 의 고정 벡터가 잡는다
# - 검증 엔진 회귀 — api-server 의 결함주입 테스트가 잡는다
name: CI
on:
push:
branches: [main]
pull_request:
jobs:
verify:
runs-on: ubuntu-latest
timeout-minutes: 10
steps:
- uses: actions/checkout@v4
- uses: actions/setup-node@v4
with:
# Dockerfile 과 같은 메이저를 쓴다. 로컬(node 25)에서 통과하는 것이
# CI(node 20)에서 깨지는 일을 막는다 — 실제로 테스트 글롭이 그랬다.
node-version: 22
cache: npm
- name: Install
run: npm ci
# 🔴 빌드가 typecheck·test 앞에 와야 한다.
#
# `packages/*/dist` 는 .gitignore 라 클린 체크아웃에 존재하지 않는데,
# dpu-core 의 package.json `exports` 는 `./dist/*` 를 가리킨다.
# 따라서 api-server 가 `@cronozen/dpu-core` 를 import 하는 순간 해석에 실패한다.
# 로컬에는 dist 가 남아 있어서 이 결함이 안 보인다 — CI 의 클린 체크아웃만 잡는다.
- name: Build workspace packages
run: npm run build --workspace=packages/dp-schema-public --workspace=packages/dpu-core
- name: Typecheck
run: npm run typecheck
# 워크스페이스 하나라도 실패하면 잡는다.
# `--if-present` 는 스크립트가 없는 워크스페이스만 건너뛴다 — 실패를 삼키지 않는다.
- name: Test
run: npm test
You can’t perform that action at this time.