From 23f5ac1c1948c0aab70bdaf8e3611307ae03b019 Mon Sep 17 00:00:00 2001 From: Aman Harwara Date: Fri, 25 Apr 2025 20:10:10 +0530 Subject: [PATCH] chore: add setup node step to pr workflow --- .github/workflows/pr.yml | 6 ++++++ 1 file changed, 6 insertions(+) diff --git a/.github/workflows/pr.yml b/.github/workflows/pr.yml index 779e464f3..65ab96f07 100644 --- a/.github/workflows/pr.yml +++ b/.github/workflows/pr.yml @@ -13,6 +13,12 @@ jobs: steps: - name: Checkout code uses: actions/checkout@v3 + - name: Set up Node + uses: actions/setup-node@v3 + with: + registry-url: 'https://registry.npmjs.org' + node-version-file: '.nvmrc' + cache: 'yarn' - name: Install dependencies run: yarn install --immutable - name: Build