Merge pull request #3 from imnyang/main

chore: update CI workflow to use npm instead of pnpm and adjust caching
This commit is contained in:
암냥 2025-11-28 11:42:22 +09:00 committed by GitHub
commit 68e06299a4
No known key found for this signature in database
GPG key ID: B5690EEEBB952194
2 changed files with 6 additions and 6 deletions

View file

@ -11,14 +11,14 @@ jobs:
steps:
- name: Checkout branch
uses: actions/checkout@v6
- name: Setup pnpm
uses: pnpm/action-setup@v4
# - name: Setup pnpm
# uses: pnpm/action-setup@v4
- name: Setup node.js 20
uses: actions/setup-node@v6
with:
node-version: 24
cache: 'pnpm'
cache: 'npm'
- name: Install Dependencies
run: pnpm i --frozen-lockfile
- name: Semantic release
run: pnpm publish --verbose
run: npm i --frozen-lockfile
- name: release
run: npm publish --verbose