diff --git a/.github/workflows/publish.yaml b/.github/workflows/publish.yaml index 114030fb..3175ec2c 100644 --- a/.github/workflows/publish.yaml +++ b/.github/workflows/publish.yaml @@ -20,11 +20,29 @@ jobs: - name: Checkout uses: actions/checkout@v4 - - name: Configure Node.js environment - uses: actions/setup-node@v4 + - name: Configure Node.js + uses: actions/setup-node@v3 with: node-version: 20 - cache: pnpm + + - uses: pnpm/action-setup@v2 + name: Configure pnpm + with: + version: 8 + run_install: false + + - name: Retrieve pnpm store directory + shell: bash + run: | + echo "STORE_PATH=$(pnpm store path --silent)" >> $GITHUB_ENV + + - uses: actions/cache@v3 + name: Setup pnpm cache + with: + path: ${{ env.STORE_PATH }} + key: ${{ runner.os }}-pnpm-store-${{ hashFiles('**/pnpm-lock.yaml') }} + restore-keys: | + ${{ runner.os }}-pnpm-store- - name: Install dependencies run: pnpm install -r --frozen-lockfile