Skip to content

Commit

Permalink
fix: 패키지 관리자를 yarn에서 npm으로 변경한다
Browse files Browse the repository at this point in the history
  • Loading branch information
guesung committed Aug 13, 2024
1 parent 1ad7705 commit 2a868aa
Showing 1 changed file with 4 additions and 4 deletions.
8 changes: 4 additions & 4 deletions .github/workflows/ci.yml
Original file line number Diff line number Diff line change
Expand Up @@ -6,7 +6,7 @@ jobs:
ci:
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@v3
- uses: actions/checkout@main
name: Checkout repository

- name: Cache dependencies
Expand All @@ -20,10 +20,10 @@ jobs:
${{ runner.os }}-nextjs-${{ hashFiles('**/package-lock.json') }}-
- name: Install dependencies
run: yarn install --frozen-lockfile
run: npm install --frozen-lockfile

- name: Check typescript
run: yarn type:check
run: npm run type:check

- name: Check eslint
run: yarn lint
run: npm run lint

0 comments on commit 2a868aa

Please sign in to comment.