From b30d1905cd7233ad8fd0904bc60d23477646527e Mon Sep 17 00:00:00 2001 From: Matt Fedderly Date: Mon, 5 Aug 2024 16:27:35 -0400 Subject: [PATCH 1/3] 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 From d732cb3785728f49a326b614e8830748ee77b9ac Mon Sep 17 00:00:00 2001 From: Matt Fedderly Date: Mon, 5 Aug 2024 16:34:49 -0400 Subject: [PATCH 2/3] Install pnpm before node --- .github/workflows/turf.yml | 10 +++++----- 1 file changed, 5 insertions(+), 5 deletions(-) diff --git a/.github/workflows/turf.yml b/.github/workflows/turf.yml index 340f806aa1..a344428401 100644 --- a/.github/workflows/turf.yml +++ b/.github/workflows/turf.yml @@ -21,17 +21,17 @@ jobs: - name: Checkout uses: actions/checkout@v4 + - name: Install pnpm + uses: pnpm/action-setup@v4 + with: + run_install: false + - name: Use Node.js ${{ matrix.node-version }} uses: actions/setup-node@v4 with: cache: "pnpm" node-version: ${{ matrix.node-version }} - - name: Install pnpm - uses: pnpm/action-setup@v4 - with: - run_install: false - - run: pnpm install --frozen-lockfile - run: git diff --exit-code - run: pnpm test From 58a2a95c743ff84856b47625a06ca0c8c6c43c2f Mon Sep 17 00:00:00 2001 From: Matt Fedderly Date: Mon, 5 Aug 2024 17:06:39 -0400 Subject: [PATCH 3/3] empty commit for build speed testing