Skip to content

Commit

Permalink
Chore: CI/CD 워크플로우 빌드 npm에서 yarn으로 변경
Browse files Browse the repository at this point in the history
  • Loading branch information
BearHumanS committed May 2, 2024
1 parent 24766b1 commit 2c8b080
Showing 1 changed file with 6 additions and 6 deletions.
12 changes: 6 additions & 6 deletions .github/workflows/ci.yml
Original file line number Diff line number Diff line change
Expand Up @@ -14,12 +14,12 @@ jobs:
node-version: '18'
- uses: actions/cache@v2
with:
path: ~/.npm
path: ~/.yarn
key: ${{ runner.os }}-node-${{ hashFiles('**/package-lock.json') }}
restore-keys: |
${{ runner.os }}-node-
- run: npm install
- run: npm run lint
- run: yarn install
- run: yarn lint

build:
name: Build
Expand All @@ -33,9 +33,9 @@ jobs:
node-version: '18'
- uses: actions/cache@v2
with:
path: ~/.npm
path: ~/.yarn
key: ${{ runner.os }}-node-${{ hashFiles('**/package-lock.json') }}
restore-keys: |
${{ runner.os }}-node-
- run: npm install
- run: CI='false' npm run build
- run: yarn install
- run: CI='false' yarn build

0 comments on commit 2c8b080

Please sign in to comment.