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