Skip to content

Updated to Phi-3.5

Updated to Phi-3.5 #62

Workflow file for this run

name: Test
on: pull_request
jobs:
test:
name: Run tests
runs-on: macos-latest
steps:
- uses: actions/checkout@v4
- name: Cache test model
id: cache-model
uses: actions/cache@v4
with:
path: /Users/runner/.humanifyjs/models/
key: models-phi
- uses: actions/setup-node@v4
with:
node-version: 20
cache: "npm"
- run: npm install --ci
- run: npm run build
- run: npm run download-ci-model
- run: npm run lint
- run: npm test