From 468dc3cbece8983899a3b43015f182881e4bf205 Mon Sep 17 00:00:00 2001 From: flx-sta <50131232+flx-sta@users.noreply.github.com> Date: Tue, 10 Sep 2024 09:41:37 -0700 Subject: [PATCH] add node.js install step to `setup` job --- .github/workflows/tests.yml | 4 ++++ 1 file changed, 4 insertions(+) diff --git a/.github/workflows/tests.yml b/.github/workflows/tests.yml index 32b437b7fd3..3861d689920 100644 --- a/.github/workflows/tests.yml +++ b/.github/workflows/tests.yml @@ -27,6 +27,10 @@ jobs: - name: Checkout Git repository id: checkout uses: actions/checkout@v4 + - name: Set up Node.js + uses: actions/setup-node@v4 + with: + node-version: ${{ env.NODE_VERSION }} - name: Cache Node modules id: cache uses: actions/cache@v3