mirror of
https://github.com/rjNemo/devbook_ts
synced 2026-06-10 20:46:39 +00:00
fix syntax error #2
This commit is contained in:
parent
d88ca50f72
commit
5c0fdd71bb
1 changed files with 8 additions and 8 deletions
16
.github/workflows/deploy.yml
vendored
16
.github/workflows/deploy.yml
vendored
|
|
@ -17,14 +17,14 @@ jobs:
|
||||||
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
|
||||||
|
|
@ -33,8 +33,8 @@ jobs:
|
||||||
steps:
|
steps:
|
||||||
- uses: actions/checkout@v2
|
- uses: actions/checkout@v2
|
||||||
- name: Build
|
- name: Build
|
||||||
run: yarn build
|
run: yarn build
|
||||||
- name: Install Firebase CLI tools
|
- name: Install Firebase CLI tools
|
||||||
run: yarn global add firebase-tools
|
run: yarn global add firebase-tools
|
||||||
- name: Deploy
|
- name: Deploy
|
||||||
run: firebase deploy --token ${{ secrets.FIREBASE_TOKEN }}
|
run: firebase deploy --token ${{ secrets.FIREBASE_TOKEN }}
|
||||||
Loading…
Reference in a new issue