Skip to content

Commit b673002

Browse files
authored
docs: faq about character limit for network-based voices. (#64)
* chore: update storybook, workflow deps.
1 parent b5a81fb commit b673002

File tree

7 files changed

+921
-1253
lines changed

7 files changed

+921
-1253
lines changed

.github/workflows/ci.yml

Lines changed: 4 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -14,15 +14,15 @@ jobs:
1414
runs-on: ubuntu-latest
1515
steps:
1616
- name: Checkout
17-
uses: actions/checkout@v3.5.2
17+
uses: actions/checkout@v4.1.1
1818
- name: Setup Node
19-
uses: actions/setup-node@v3.6.0
19+
uses: actions/setup-node@v4.0.1
2020
with:
2121
node-version: '18.16.0'
2222
- name: Install Dependencies
2323
run: npm ci
2424
- name: Save error log
25-
uses: actions/upload-artifact@v2
25+
uses: actions/upload-artifact@v4.3.0
2626
if: ${{ failure() }}
2727
with:
2828
name: npm-debug-log-${{ hashFiles('package-lock.json') }}
@@ -32,7 +32,7 @@ jobs:
3232
- name: Test
3333
run: npm test
3434
- name: Report Coverage
35-
uses: codecov/[email protected].4
35+
uses: codecov/[email protected].5
3636
with:
3737
token: ${{ secrets.CODECOV_TOKEN }}
3838
- name: Pack

.github/workflows/deploy.yml

Lines changed: 4 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -17,23 +17,23 @@ jobs:
1717
if: ${{ github.event.workflow_run.conclusion == 'success' }}
1818
steps:
1919
- name: Checkout
20-
uses: actions/checkout@v3.5.2
20+
uses: actions/checkout@v4.1.1
2121
- name: Setup Node
22-
uses: actions/setup-node@v3.6.0
22+
uses: actions/setup-node@v4.0.1
2323
with:
2424
node-version: '18.16.0'
2525
- name: Install Dependencies
2626
run: npm ci
2727
- name: Save error log
28-
uses: actions/upload-artifact@v2
28+
uses: actions/upload-artifact@v4.3.0
2929
if: ${{ failure() }}
3030
with:
3131
name: npm-debug-log-${{ hashFiles('package-lock.json') }}
3232
path: npm-debug.log
3333
- name: Build
3434
run: npm run build:story
3535
- name: Deploy
36-
uses: JamesIves/github-pages-deploy-action@v4.4.2
36+
uses: JamesIves/github-pages-deploy-action@v4.5.0
3737
with:
3838
branch: gh-pages
3939
folder: packages/story/build

.github/workflows/publish.yml

Lines changed: 5 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -10,15 +10,15 @@ jobs:
1010
runs-on: ubuntu-latest
1111
steps:
1212
- name: Checkout
13-
uses: actions/checkout@v3.5.2
13+
uses: actions/checkout@v4.1.1
1414
- name: Setup Node
15-
uses: actions/setup-node@v3.6.0
15+
uses: actions/setup-node@v4.0.1
1616
with:
1717
node-version: '18.16.0'
1818
- name: Install Dependencies
1919
run: npm ci
2020
- name: Save error log
21-
uses: actions/upload-artifact@v2
21+
uses: actions/upload-artifact@v4.3.0
2222
if: ${{ failure() }}
2323
with:
2424
name: npm-debug-log-${{ hashFiles('package-lock.json') }}
@@ -30,7 +30,8 @@ jobs:
3030
- name: Pack
3131
run: npm pack --pack-destination=packages/tts-react --workspace=tts-react
3232
- name: Push to NPM registry
33-
uses: JS-DevTools/npm-publish@v2.1.0
33+
uses: JS-DevTools/npm-publish@v3.0.1
3434
with:
3535
token: ${{ secrets.NPM_AUTH_TOKEN }}
3636
package: packages/tts-react
37+
tag: ${{ contains(github.ref, '-') && 'next' || 'latest' }}

0 commit comments

Comments
 (0)