Skip to content

Commit

Permalink
config: CI yml 구성
Browse files Browse the repository at this point in the history
  • Loading branch information
d0422 committed May 11, 2024
1 parent 9980687 commit 1ac4840
Show file tree
Hide file tree
Showing 3 changed files with 120 additions and 95 deletions.
26 changes: 26 additions & 0 deletions .github/workflows/CI.yml
Original file line number Diff line number Diff line change
@@ -0,0 +1,26 @@
name: ✅ CI

on:
pull_request:
branches:
- 'main'

jobs:
build:
runs-on: ubuntu-latest
steps:
- name: ✅ 코드 체크 아웃
uses: actions/checkout@v3

- name: ✅ 노드 세팅
uses: actions/setup-node@v3
with:
node-version: '20.x'

- name: 🔥 테스트
run: npm test

- name: 🔨 빌드
run: |
npm ci
npm run build
188 changes: 93 additions & 95 deletions package-lock.json

Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.

1 change: 1 addition & 0 deletions package.json
Original file line number Diff line number Diff line change
Expand Up @@ -53,6 +53,7 @@
"@types/react-dom": "^18.2.24",
"jest": "^29.7.0",
"jest-environment-jsdom": "^29.7.0",
"rollup": "^4.17.2",
"rollup-plugin-dts": "^6.1.0",
"rollup-plugin-peer-deps-external": "^2.2.4",
"storybook": "^8.0.8",
Expand Down

0 comments on commit 1ac4840

Please sign in to comment.