mirror of
https://github.com/rjNemo/devbook_ts
synced 2026-06-12 05:26:46 +00:00
fix syntax error #3
This commit is contained in:
parent
5c0fdd71bb
commit
83d8fb1ec4
1 changed files with 9 additions and 9 deletions
18
.github/workflows/deploy.yml
vendored
18
.github/workflows/deploy.yml
vendored
|
|
@ -21,7 +21,7 @@ jobs:
|
||||||
- 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'
|
||||||
|
|
@ -30,11 +30,11 @@ jobs:
|
||||||
needs: test
|
needs: test
|
||||||
name: Release
|
name: Release
|
||||||
runs-on: ubuntu-latest
|
runs-on: ubuntu-latest
|
||||||
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