From b30d1905cd7233ad8fd0904bc60d23477646527e Mon Sep 17 00:00:00 2001 From: Matt Fedderly Date: Mon, 5 Aug 2024 16:27:35 -0400 Subject: [PATCH] Update PR/develop action to cache pnpm files --- .github/workflows/turf.yml | 6 +++--- 1 file changed, 3 insertions(+), 3 deletions(-) diff --git a/.github/workflows/turf.yml b/.github/workflows/turf.yml index ca2efa188d..340f806aa1 100644 --- a/.github/workflows/turf.yml +++ b/.github/workflows/turf.yml @@ -22,14 +22,14 @@ jobs: uses: actions/checkout@v4 - name: Use Node.js ${{ matrix.node-version }} - uses: actions/setup-node@v3 + uses: actions/setup-node@v4 with: + cache: "pnpm" node-version: ${{ matrix.node-version }} - name: Install pnpm - uses: pnpm/action-setup@v2 + uses: pnpm/action-setup@v4 with: - version: 8 run_install: false - run: pnpm install --frozen-lockfile