Skip to content

Commit

Permalink
docs: faq about character limit for network-based voices. (#64)
Browse files Browse the repository at this point in the history
* chore: update storybook, workflow deps.
  • Loading branch information
morganney authored Jan 29, 2024
1 parent b5a81fb commit b673002
Show file tree
Hide file tree
Showing 7 changed files with 921 additions and 1,253 deletions.
8 changes: 4 additions & 4 deletions .github/workflows/ci.yml
Original file line number Diff line number Diff line change
Expand Up @@ -14,15 +14,15 @@ jobs:
runs-on: ubuntu-latest
steps:
- name: Checkout
uses: actions/checkout@v3.5.2
uses: actions/checkout@v4.1.1
- name: Setup Node
uses: actions/setup-node@v3.6.0
uses: actions/setup-node@v4.0.1
with:
node-version: '18.16.0'
- name: Install Dependencies
run: npm ci
- name: Save error log
uses: actions/upload-artifact@v2
uses: actions/upload-artifact@v4.3.0
if: ${{ failure() }}
with:
name: npm-debug-log-${{ hashFiles('package-lock.json') }}
Expand All @@ -32,7 +32,7 @@ jobs:
- name: Test
run: npm test
- name: Report Coverage
uses: codecov/[email protected].4
uses: codecov/[email protected].5
with:
token: ${{ secrets.CODECOV_TOKEN }}
- name: Pack
Expand Down
8 changes: 4 additions & 4 deletions .github/workflows/deploy.yml
Original file line number Diff line number Diff line change
Expand Up @@ -17,23 +17,23 @@ jobs:
if: ${{ github.event.workflow_run.conclusion == 'success' }}
steps:
- name: Checkout
uses: actions/checkout@v3.5.2
uses: actions/checkout@v4.1.1
- name: Setup Node
uses: actions/setup-node@v3.6.0
uses: actions/setup-node@v4.0.1
with:
node-version: '18.16.0'
- name: Install Dependencies
run: npm ci
- name: Save error log
uses: actions/upload-artifact@v2
uses: actions/upload-artifact@v4.3.0
if: ${{ failure() }}
with:
name: npm-debug-log-${{ hashFiles('package-lock.json') }}
path: npm-debug.log
- name: Build
run: npm run build:story
- name: Deploy
uses: JamesIves/github-pages-deploy-action@v4.4.2
uses: JamesIves/github-pages-deploy-action@v4.5.0
with:
branch: gh-pages
folder: packages/story/build
Expand Down
9 changes: 5 additions & 4 deletions .github/workflows/publish.yml
Original file line number Diff line number Diff line change
Expand Up @@ -10,15 +10,15 @@ jobs:
runs-on: ubuntu-latest
steps:
- name: Checkout
uses: actions/checkout@v3.5.2
uses: actions/checkout@v4.1.1
- name: Setup Node
uses: actions/setup-node@v3.6.0
uses: actions/setup-node@v4.0.1
with:
node-version: '18.16.0'
- name: Install Dependencies
run: npm ci
- name: Save error log
uses: actions/upload-artifact@v2
uses: actions/upload-artifact@v4.3.0
if: ${{ failure() }}
with:
name: npm-debug-log-${{ hashFiles('package-lock.json') }}
Expand All @@ -30,7 +30,8 @@ jobs:
- name: Pack
run: npm pack --pack-destination=packages/tts-react --workspace=tts-react
- name: Push to NPM registry
uses: JS-DevTools/npm-publish@v2.1.0
uses: JS-DevTools/npm-publish@v3.0.1
with:
token: ${{ secrets.NPM_AUTH_TOKEN }}
package: packages/tts-react
tag: ${{ contains(github.ref, '-') && 'next' || 'latest' }}
Loading

0 comments on commit b673002

Please sign in to comment.