From 5c0fdd71bb5ecbd38984aa99cec2abc8bbe1f404 Mon Sep 17 00:00:00 2001 From: Ruidy Nemausat Date: Sat, 16 May 2020 15:47:30 +0200 Subject: [PATCH] fix syntax error #2 --- .github/workflows/deploy.yml | 16 ++++++++-------- 1 file changed, 8 insertions(+), 8 deletions(-) diff --git a/.github/workflows/deploy.yml b/.github/workflows/deploy.yml index 21216f1..cfea016 100644 --- a/.github/workflows/deploy.yml +++ b/.github/workflows/deploy.yml @@ -17,14 +17,14 @@ jobs: steps: - uses: actions/checkout@v2 - name: Install dependencies - run: yarn install --frozen-lockfile + run: yarn install --frozen-lockfile - name: Unit tests - run: yarn test --watchAll=false + run: yarn test --watchAll=false - name: E2E tests uses: cypress-io/github-action@v1 - with: - start: yarn start - wait-on: 'http://localhost:3000' + with: + start: yarn start + wait-on: 'http://localhost:3000' release: if: ${{ github.ref == 'master' }} needs: test @@ -33,8 +33,8 @@ jobs: steps: - uses: actions/checkout@v2 - name: Build - run: yarn build + run: yarn build - name: Install Firebase CLI tools - run: yarn global add firebase-tools + run: yarn global add firebase-tools - name: Deploy - run: firebase deploy --token ${{ secrets.FIREBASE_TOKEN }} \ No newline at end of file + run: firebase deploy --token ${{ secrets.FIREBASE_TOKEN }} \ No newline at end of file