From e28353c63b7848e251cb3f6a5f54af590a21dcf4 Mon Sep 17 00:00:00 2001 From: twilwa Date: Fri, 17 Jan 2025 12:33:42 -0800 Subject: [PATCH] Revert "refactor: dockerize smoke tests (#2420)" (#2459) This reverts commit 52565607a98c1b2f71fec380660bb3c83f0389c8. --- .github/workflows/smoke-tests.yml | 17 +++++------------ 1 file changed, 5 insertions(+), 12 deletions(-) diff --git a/.github/workflows/smoke-tests.yml b/.github/workflows/smoke-tests.yml index 00d1a5116ba..2c088afbe68 100644 --- a/.github/workflows/smoke-tests.yml +++ b/.github/workflows/smoke-tests.yml @@ -10,24 +10,17 @@ on: jobs: smoke-tests: runs-on: ubuntu-latest - container: - image: node:23-bullseye steps: - uses: actions/checkout@v4 - - name: Cache pnpm - uses: actions/cache@v4 + - uses: pnpm/action-setup@v3 with: - path: | - ~/.pnpm-store - **/node_modules - key: ${{ runner.os }}-pnpm-${{ hashFiles('**/pnpm-lock.yaml') }} - restore-keys: ${{ runner.os }}-pnpm- + version: 9.15.0 - - name: Setup pnpm - uses: pnpm/action-setup@v3 + - uses: actions/setup-node@v4 with: - version: 9.15.0 + node-version: "23.3.0" + cache: "pnpm" - name: Run smoke tests run: pnpm run smokeTests