From 331badc87a1a22bbd8b262d00f06213515cf401b Mon Sep 17 00:00:00 2001 From: Chetan baliyan Date: Thu, 9 Jan 2025 12:58:13 +0530 Subject: [PATCH] test arch ci --- .github/workflows/arch.yml | 28 ++++++++++++++++++++++++++++ package.json | 2 +- 2 files changed, 29 insertions(+), 1 deletion(-) create mode 100644 .github/workflows/arch.yml diff --git a/.github/workflows/arch.yml b/.github/workflows/arch.yml new file mode 100644 index 0000000..3fe1979 --- /dev/null +++ b/.github/workflows/arch.yml @@ -0,0 +1,28 @@ +name: Arch Linux Test + +on: + push: + branches: [main] + pull_request: + branches: [main] + +jobs: + test: + name: Test on Arch Linux + runs-on: ubuntu-latest + container: + image: archlinux:base-devel + + steps: + - uses: actions/checkout@v4 + with: + submodules: true + + - name: Setup Node.js + run: pacman -Sy --noconfirm nodejs npm + + - name: Install dependencies + run: npm ci + + - name: Run tests + run: npm test \ No newline at end of file diff --git a/package.json b/package.json index 30072e0..56d7b9e 100644 --- a/package.json +++ b/package.json @@ -1,6 +1,6 @@ { "name": "nodejs-whisper", - "version": "0.1.19", + "version": "0.2.4", "description": "Node bindings for OpenAI's Whisper. Optimized for CPU.", "main": "dist/index.js", "types": "dist/index.d.ts",