From d39e7ee97fb8fdb7eb8494adbec309392869f9aa Mon Sep 17 00:00:00 2001 From: Hayden <64056131+hay-kot@users.noreply.github.com> Date: Fri, 24 May 2024 18:23:24 -0500 Subject: [PATCH] modify frontend ci --- .github/workflows/partial-frontend.yaml | 14 +++++++++----- 1 file changed, 9 insertions(+), 5 deletions(-) diff --git a/.github/workflows/partial-frontend.yaml b/.github/workflows/partial-frontend.yaml index f849406..78071b9 100644 --- a/.github/workflows/partial-frontend.yaml +++ b/.github/workflows/partial-frontend.yaml @@ -13,9 +13,13 @@ jobs: with: fetch-depth: 0 + - uses: actions/setup-node@v4 + with: + node-version: 20 + - uses: pnpm/action-setup@v3.0.0 with: - version: 6.0.2 + version: 9 - name: Install dependencies run: pnpm install --shamefully-hoist @@ -46,18 +50,18 @@ jobs: - name: Set up Go uses: actions/setup-go@v5 with: - go-version: "1.21" + go-version: "1.22" - uses: actions/setup-node@v4 with: - node-version: 18 + node-version: 20 - uses: pnpm/action-setup@v3.0.0 with: - version: 6.0.2 + version: 9 - name: Install dependencies - run: pnpm install + run: pnpm install --shamefully-hoist working-directory: frontend - name: Run Integration Tests