From d88ca50f7218994c67afb843204a81e5af4a33c7 Mon Sep 17 00:00:00 2001 From: Ruidy Nemausat Date: Sat, 16 May 2020 15:44:51 +0200 Subject: [PATCH] fix syntax error --- .github/workflows/deploy.yml | 22 +++++++++++----------- 1 file changed, 11 insertions(+), 11 deletions(-) diff --git a/.github/workflows/deploy.yml b/.github/workflows/deploy.yml index 1e1d474..21216f1 100644 --- a/.github/workflows/deploy.yml +++ b/.github/workflows/deploy.yml @@ -14,17 +14,17 @@ jobs: REACT_APP_AUTH_DOMAIN: ${{ secrets.REACT_APP_AUTH_DOMAIN }} REACT_APP_APP_ID: ${{ secrets.REACT_APP_APP_ID }} REACT_APP_API_KEY: ${{ secrets.REACT_APP_API_KEY }} - steps: - - uses: actions/checkout@v2 - - name: Install dependencies - run: yarn install --frozen-lockfile - - name: Unit tests - run: yarn test --watchAll=false - - name: E2E tests - uses: cypress-io/github-action@v1 - with: - start: yarn start - wait-on: 'http://localhost:3000' + steps: + - uses: actions/checkout@v2 + - name: Install dependencies + run: yarn install --frozen-lockfile + - name: Unit tests + run: yarn test --watchAll=false + - name: E2E tests + uses: cypress-io/github-action@v1 + with: + start: yarn start + wait-on: 'http://localhost:3000' release: if: ${{ github.ref == 'master' }} needs: test