We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent c55caf0 commit c5e5955Copy full SHA for c5e5955
2 files changed
.github/workflows/ci.yml
@@ -0,0 +1,35 @@
1
+name: CI
2
+
3
+on:
4
+ push:
5
+ branches:
6
+ - develop
7
+ pull_request:
8
9
10
11
+jobs:
12
+ lint-and-build:
13
+ runs-on: ubuntu-latest
14
15
+ steps:
16
+ - name: 레포지토리 체크아웃
17
+ uses: actions/checkout@v4
18
19
+ - name: pnpm 설치
20
+ uses: pnpm/action-setup@v5
21
22
+ - name: Node.js 설치
23
+ uses: actions/setup-node@v6
24
+ with:
25
+ node-version: 22
26
+ cache: pnpm
27
28
+ - name: 의존성 설치
29
+ run: pnpm install --frozen-lockfile
30
31
+ - name: ESLint 검사
32
+ run: pnpm lint
33
34
+ - name: Build 검사
35
+ run: pnpm build
package.json
@@ -13,6 +13,7 @@
"format:check": "prettier . --check",
"prepare": "husky"
},
+ "packageManager": "pnpm@10.0.0",
"lint-staged": {
"*.{js,jsx,ts,tsx}": [
"eslint --fix",
0 commit comments