From 93637fcf0857ed5d918fd1d8cc5a8e0b41fcf9b6 Mon Sep 17 00:00:00 2001 From: Dillon Kearns Date: Sun, 11 Dec 2022 19:19:25 -0800 Subject: [PATCH] Use node 16 in CI to avoid cypress timeout issue. --- .github/workflows/ci.yml | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/.github/workflows/ci.yml b/.github/workflows/ci.yml index e0b2e3a1..b0b770da 100644 --- a/.github/workflows/ci.yml +++ b/.github/workflows/ci.yml @@ -18,10 +18,10 @@ jobs: - uses: actions/checkout@v2 with: submodules: recursive - - name: Use Node.js 18 + - name: Use Node.js 16 uses: actions/setup-node@v1 with: - node-version: 18 + node-version: 16 # Re-use node_modules between runs until package-lock.json changes. - name: Cache node_modules id: cache-node_modules