Skip to content

Initial NodeJS

Initial NodeJS #1

Workflow file for this run

name: Node.js Tests
on:
workflow_dispatch:
push:
branches: [ main ]
paths:
- '.github/workflows/nodejs.yml'
- 'binding/nodejs/**'
- '!binding/nodejs/README.md'
- 'lib/common/**'
- 'lib/node/**'
- 'resources/audio_samples/**'
- 'resources/.test/**'
pull_request:
branches: [ main, 'v[0-9]+.[0-9]+' ]
paths:
- '.github/workflows/nodejs.yml'
- 'binding/nodejs/**'
- '!binding/nodejs/README.md'
- 'lib/common/**'
- 'lib/node/**'
- 'resources/audio_samples/**'
- 'resources/.test/**'
defaults:
run:
working-directory: binding/nodejs
jobs:
build-self-hosted:
runs-on: ${{ matrix.machine }}
strategy:
fail-fast: false
matrix:
machine: [rpi4-32, rpi4-64, rpi5-32, rpi5-64, pv-linux, pv-ios, pv-windows]
steps:
- uses: actions/checkout@v3
- name: Install dependencies
run: yarn install
- name: Download resource files
run: curl http://${{secrets.PV_CICD_RES_SERVER_AUTHORITY}}/github/picollm/res/phi2-290.bin/latest/phi2-290.bin -o phi2-290.bin
- name: Test
run: yarn test test/index.test.ts --access_key=${{secrets.PV_VALID_ACCESS_KEY}}