mirror of
https://github.com/rjNemo/devbook_ts
synced 2026-06-12 13:36:43 +00:00
fix syntax error
This commit is contained in:
parent
6ebaecdf48
commit
d88ca50f72
1 changed files with 11 additions and 11 deletions
22
.github/workflows/deploy.yml
vendored
22
.github/workflows/deploy.yml
vendored
|
|
@ -14,17 +14,17 @@ jobs:
|
||||||
REACT_APP_AUTH_DOMAIN: ${{ secrets.REACT_APP_AUTH_DOMAIN }}
|
REACT_APP_AUTH_DOMAIN: ${{ secrets.REACT_APP_AUTH_DOMAIN }}
|
||||||
REACT_APP_APP_ID: ${{ secrets.REACT_APP_APP_ID }}
|
REACT_APP_APP_ID: ${{ secrets.REACT_APP_APP_ID }}
|
||||||
REACT_APP_API_KEY: ${{ secrets.REACT_APP_API_KEY }}
|
REACT_APP_API_KEY: ${{ secrets.REACT_APP_API_KEY }}
|
||||||
steps:
|
steps:
|
||||||
- uses: actions/checkout@v2
|
- uses: actions/checkout@v2
|
||||||
- name: Install dependencies
|
- name: Install dependencies
|
||||||
run: yarn install --frozen-lockfile
|
run: yarn install --frozen-lockfile
|
||||||
- name: Unit tests
|
- name: Unit tests
|
||||||
run: yarn test --watchAll=false
|
run: yarn test --watchAll=false
|
||||||
- name: E2E tests
|
- name: E2E tests
|
||||||
uses: cypress-io/github-action@v1
|
uses: cypress-io/github-action@v1
|
||||||
with:
|
with:
|
||||||
start: yarn start
|
start: yarn start
|
||||||
wait-on: 'http://localhost:3000'
|
wait-on: 'http://localhost:3000'
|
||||||
release:
|
release:
|
||||||
if: ${{ github.ref == 'master' }}
|
if: ${{ github.ref == 'master' }}
|
||||||
needs: test
|
needs: test
|
||||||
|
|
|
||||||
Loading…
Reference in a new issue