From a87e97a16605201c0c8eb795f69ef38fc53849d1 Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Arda=20G=C3=BCns=C3=BCren?= Date: Mon, 6 Nov 2023 11:18:00 +0200 Subject: [PATCH] Create test.yml github workflow --- .github/workflows/test.yml | 16 ++++++++++++++++ 1 file changed, 16 insertions(+) create mode 100644 .github/workflows/test.yml diff --git a/.github/workflows/test.yml b/.github/workflows/test.yml new file mode 100644 index 0000000..b0ba7fb --- /dev/null +++ b/.github/workflows/test.yml @@ -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 }}