From 185bafcc05859898662e37eb171b99c79ae0e973 Mon Sep 17 00:00:00 2001 From: Max Brunsfeld Date: Wed, 18 May 2022 12:28:26 -0700 Subject: [PATCH] Install node for `run tests` CI job Co-authored-by: Keith Simmons --- .github/workflows/ci.yml | 5 +++++ 1 file changed, 5 insertions(+) diff --git a/.github/workflows/ci.yml b/.github/workflows/ci.yml index a773ef6c7c..e97c529faf 100644 --- a/.github/workflows/ci.yml +++ b/.github/workflows/ci.yml @@ -31,6 +31,11 @@ jobs: target: x86_64-apple-darwin profile: minimal + - name: Install Node + uses: actions/setup-node@v2 + with: + node-version: '16' + - name: Checkout repo uses: actions/checkout@v2 with: