ollama / .github /workflows /run-test-suite.yml
rippanteq7's picture
Upload folder using huggingface_hub
bbef364 verified
raw
history blame
365 Bytes
name: Run Unit Tests
on:
push:
branches:
- main
pull_request:
branches:
- main
jobs:
test:
runs-on: ubuntu-latest
container:
image: node:16
steps:
- name: Checkout code
uses: actions/checkout@v2
- name: Install dependencies
run: npm ci
- name: Run Vitest Suite
run: npm test