diff --git a/.github/workflows/release.yml b/.github/workflows/release.yml index 7903e32..82d6a07 100644 --- a/.github/workflows/release.yml +++ b/.github/workflows/release.yml @@ -13,6 +13,9 @@ jobs: - name: Prepare repository run: git fetch --unshallow --tags + - name: Enable corepack + run: corepack enable + - name: Setup node uses: actions/setup-node@v4 with: @@ -21,7 +24,6 @@ jobs: - uses: pnpm/action-setup@v4 with: - version: 9 run_install: true - name: Create Release diff --git a/.github/workflows/test.yml b/.github/workflows/test.yml index 4e0811c..f78eb30 100644 --- a/.github/workflows/test.yml +++ b/.github/workflows/test.yml @@ -9,6 +9,9 @@ jobs: - name: Checkout codes uses: actions/checkout@v4 + - name: Enable corepack + run: corepack enable + - name: Setup node uses: actions/setup-node@v4 with: @@ -17,7 +20,6 @@ jobs: - uses: pnpm/action-setup@v4 with: - version: 9 run_install: true - name: Build