-
-
Notifications
You must be signed in to change notification settings - Fork 15
New issue
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
Lovo #3
base: main
Are you sure you want to change the base?
Lovo #3
Conversation
The latest updates on your projects. Learn more about Vercel for Git ↗︎
|
.github/workflows/push.yml
Outdated
runs-on: ubuntu-latest | ||
|
||
if: "!contains(github.event.head_commit.message, 'ci skip') && !contains(github.event.head_commit.message, 'skip ci')" | ||
|
||
steps: | ||
|
||
- uses: actions/checkout@v4 | ||
|
||
- name: Prepare repository | ||
run: git fetch --unshallow --tags | ||
|
||
- name: Use Node.js | ||
uses: actions/setup-node@v4 | ||
with: | ||
node-version: 20 | ||
|
||
- name: Setup pnpm | ||
uses: pnpm/action-setup@v4 | ||
with: | ||
version: 9 | ||
|
||
- name: Cache pnpm modules | ||
uses: actions/cache@v4 | ||
with: | ||
path: ~/.pnpm-store | ||
key: ${{ runner.os }}-pnpm-${{ hashFiles('**/pnpm-lock.yaml') }} | ||
restore-keys: | | ||
${{ runner.os }}-pnpm- | ||
|
||
- name: Create Release | ||
env: | ||
GH_TOKEN: ${{ secrets.GITHUB_TOKEN }} | ||
NPM_TOKEN: ${{ secrets.NPM_TOKEN }} | ||
run: | | ||
pnpm install | ||
npx auto shipit |
Check warning
Code scanning / CodeQL
Workflow does not contain permissions Medium
.github/workflows/push.yml
Outdated
node-version: 20 | ||
|
||
- name: Setup pnpm | ||
uses: pnpm/action-setup@v4 |
Check warning
Code scanning / CodeQL
Unpinned tag for a non-immutable Action in workflow Medium
This pull request introduces a new text-to-speech (TTS) functionality using the Lovo API in the
src/lovo/index.ts
file. The most important changes include importing necessary modules, defining types for API responses, and creating the mainlovo
object with a TTS synthesis function.