Skip to content

Commit

Permalink
fix
Browse files Browse the repository at this point in the history
  • Loading branch information
albho committed Feb 7, 2024
1 parent 749b3ab commit b9b20e8
Show file tree
Hide file tree
Showing 3 changed files with 2 additions and 8 deletions.
6 changes: 0 additions & 6 deletions .github/workflows/web-demos.yml
Original file line number Diff line number Diff line change
Expand Up @@ -35,12 +35,6 @@ jobs:
with:
node-version: ${{ matrix.node-version }}

# ************** REMOVE AFTER RELEASE ********************
- name: Build Web SDK
run: yarn && yarn build
working-directory: binding/web
# ********************************************************

- name: Pre-build dependencies
run: npm install yarn

Expand Down
2 changes: 1 addition & 1 deletion README.md
Original file line number Diff line number Diff line change
Expand Up @@ -33,7 +33,7 @@ Orca may undergo changes as we continually enhance and refine the engine to prov
- [Demos](#demos)
- [Python](#python-demos)
- [C](#c-demos)
- [Web Demo](#web-demo)
- [Web Demo](#web-demos)
- [SDKs](#sdks)
- [Python](#python)
- [C](#c)
Expand Down
2 changes: 1 addition & 1 deletion binding/web/test/orca.test.ts
Original file line number Diff line number Diff line change
Expand Up @@ -297,7 +297,7 @@ describe('Orca Binding', function() {
try {
let orca: any = null;

const setOrcaSpeech = (customSpeechRate: number) => new Promise<Int16Array | null>(async (resolve) => {
const setOrcaSpeech = (customSpeechRate: number) => new Promise<Int16Array | null>(async resolve => {
orca = await instance.create(
ACCESS_KEY,
orcaSpeech => {
Expand Down

0 comments on commit b9b20e8

Please sign in to comment.