Skip to content

Commit

Permalink
Create test.yml github workflow
Browse files Browse the repository at this point in the history
  • Loading branch information
ArdaGnsrn authored Nov 6, 2023
1 parent 9ddc43e commit a87e97a
Showing 1 changed file with 16 additions and 0 deletions.
16 changes: 16 additions & 0 deletions .github/workflows/test.yml
Original file line number Diff line number Diff line change
@@ -0,0 +1,16 @@
name: NPM Package Test

on:
push:
jobs:
test:
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@v3
- uses: actions/setup-node@v3
with:
node-version: 16
- run: npm install
- run: npm test
env:
ELEVENLABS_API_KEY: ${{ secrets.ELEVENLABS_API_KEY }}

0 comments on commit a87e97a

Please sign in to comment.