Skip to content

Commit

Permalink
test arch ci
Browse files Browse the repository at this point in the history
  • Loading branch information
ChetanXpro committed Jan 9, 2025
1 parent 0cde1a1 commit 331badc
Show file tree
Hide file tree
Showing 2 changed files with 29 additions and 1 deletion.
28 changes: 28 additions & 0 deletions .github/workflows/arch.yml
Original file line number Diff line number Diff line change
@@ -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
2 changes: 1 addition & 1 deletion package.json
Original file line number Diff line number Diff line change
@@ -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",
Expand Down

0 comments on commit 331badc

Please sign in to comment.