From 287593b9f310d390fbfd5e1cf83dae55db5a091e Mon Sep 17 00:00:00 2001 From: Arbaz Date: Sun, 29 Mar 2026 16:35:49 +0200 Subject: [PATCH] fix(ci): align Node.js setup to v6 and improve caching consistency --- .github/workflows/nightly-e2e.yaml | 12 ++++++++++++ 1 file changed, 12 insertions(+) diff --git a/.github/workflows/nightly-e2e.yaml b/.github/workflows/nightly-e2e.yaml index bd97bc42c..0c9f1856a 100644 --- a/.github/workflows/nightly-e2e.yaml +++ b/.github/workflows/nightly-e2e.yaml @@ -39,6 +39,12 @@ jobs: - name: Checkout uses: actions/checkout@v6 + - name: Setup Node.js + uses: actions/setup-node@v6 + with: + node-version: '22' + cache: 'npm' + - name: Run cloud E2E test env: NVIDIA_API_KEY: ${{ secrets.NVIDIA_API_KEY }} @@ -65,6 +71,12 @@ jobs: - name: Checkout uses: actions/checkout@v6 + - name: Setup Node.js + uses: actions/setup-node@v6 + with: + node-version: '22' + cache: 'npm' + - name: Run cloud-experimental E2E test env: NVIDIA_API_KEY: ${{ secrets.NVIDIA_API_KEY }}