From 4ba7412e8922c5508211ad96e41fc764bcad26a2 Mon Sep 17 00:00:00 2001 From: jrhoads Date: Mon, 12 Jun 2023 16:07:34 -0400 Subject: [PATCH] Explicitly set node-version --- .github/workflows/cypress_tests.yml | 5 +++-- 1 file changed, 3 insertions(+), 2 deletions(-) diff --git a/.github/workflows/cypress_tests.yml b/.github/workflows/cypress_tests.yml index 2855c51c..b4254a4d 100644 --- a/.github/workflows/cypress_tests.yml +++ b/.github/workflows/cypress_tests.yml @@ -19,13 +19,14 @@ jobs: matrix: containers: [1, 2, 3, 4, 5] steps: + - uses: actions/setup-node@v3 + with: + node-version: 18 - name: Checkout uses: actions/checkout@v3 - - name: Cypress run uses: cypress-io/github-action@v5 with: - node-version: 18 start: yarn dev wait-on: 'http://localhost:3000' quiet: true