From c5ac405de8816fe0bbae53ef6f8f723c4cfe420e Mon Sep 17 00:00:00 2001 From: justinyeh1995 Date: Sat, 6 Jul 2024 17:35:51 -0500 Subject: [PATCH] Modify github/workflows/terraform_cypress.yml: add npm install step in cypress-tests job --- .github/workflows/terraform_cypress.yml | 6 ++++++ 1 file changed, 6 insertions(+) diff --git a/.github/workflows/terraform_cypress.yml b/.github/workflows/terraform_cypress.yml index 0e0e20d..f8905c6 100644 --- a/.github/workflows/terraform_cypress.yml +++ b/.github/workflows/terraform_cypress.yml @@ -39,9 +39,15 @@ jobs: cypress-tests: needs: terraform-deploy runs-on: ubuntu-latest + strategy: + matrix: + node-version: [20.x] steps: - name: Checkout code uses: actions/checkout@v4 + + - name: Install dependencies + run: npm install - name: Cypress run uses: cypress-io/github-action@v6