From 0e3bd54417a4ad0cb21b67022122a70c664f6521 Mon Sep 17 00:00:00 2001 From: Adam Novak Date: Wed, 20 Sep 2023 11:00:37 -0700 Subject: [PATCH] Add Node setup to Mac tests Don't just hope npm exists --- .github/workflows/testmac.yml | 5 +++++ 1 file changed, 5 insertions(+) diff --git a/.github/workflows/testmac.yml b/.github/workflows/testmac.yml index 77a2e8442c3..11d656e7a05 100644 --- a/.github/workflows/testmac.yml +++ b/.github/workflows/testmac.yml @@ -37,6 +37,11 @@ jobs: - name: Checkout code without submodules uses: actions/checkout@v2 + + - name: Install Node + uses: actions/setup-node@v3 + with: + node-version: 18 - name: Get or restore dependencies run: scripts/restore-deps.sh