From 824fdfd38660e252461e168075133f99d59e010c Mon Sep 17 00:00:00 2001 From: Pranav C Date: Thu, 23 Sep 2021 11:07:46 +0530 Subject: [PATCH] chore: enable cypress test Signed-off-by: Pranav C --- .github/workflows/ci-cd.yml | 22 +++++++++++----------- 1 file changed, 11 insertions(+), 11 deletions(-) diff --git a/.github/workflows/ci-cd.yml b/.github/workflows/ci-cd.yml index 3529783efb..d57505e915 100644 --- a/.github/workflows/ci-cd.yml +++ b/.github/workflows/ci-cd.yml @@ -9,17 +9,17 @@ on: branches: [ master ] jobs: -# cypress-run: -# runs-on: ubuntu-20.04 -# steps: -# - name: Checkout -# uses: actions/checkout@v2 -# - name: Cypress run -# uses: cypress-io/github-action@v2 -# with: -# start: docker-compose -f ./docker-compose-cypress.yml up -d -# wait-on: 'http://localhost:3000' -# wait-on-timeout: 900 + cypress-run: + runs-on: ubuntu-20.04 + steps: + - name: Checkout + uses: actions/checkout@v2 + - name: Cypress run + uses: cypress-io/github-action@v2 + with: + start: docker-compose -f ./docker-compose-cypress.yml up -d + wait-on: 'http://localhost:3000' + wait-on-timeout: 900 docker: runs-on: ubuntu-latest