From e083a2fd7016dfca088cacb7886ab3abe1948aa0 Mon Sep 17 00:00:00 2001 From: imnyang Date: Fri, 28 Nov 2025 11:41:49 +0900 Subject: [PATCH] chore: update CI workflow to use npm instead of pnpm and adjust caching --- .github/workflows/{ci.yml => ci.yml.disabled} | 0 .github/workflows/release.yml | 12 ++++++------ 2 files changed, 6 insertions(+), 6 deletions(-) rename .github/workflows/{ci.yml => ci.yml.disabled} (100%) diff --git a/.github/workflows/ci.yml b/.github/workflows/ci.yml.disabled similarity index 100% rename from .github/workflows/ci.yml rename to .github/workflows/ci.yml.disabled diff --git a/.github/workflows/release.yml b/.github/workflows/release.yml index 6b17890..fe2e4d7 100644 --- a/.github/workflows/release.yml +++ b/.github/workflows/release.yml @@ -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