audiobookshelf/.github/workflows/unit-tests.yml

38 lines
770 B
YAML
Raw Normal View History

name: Run Unit Tests
2024-03-15 07:50:51 +01:00
on:
workflow_dispatch:
inputs:
ref:
description: 'Branch/Tag/SHA to test'
2024-03-15 07:50:51 +01:00
required: true
pull_request:
push:
2024-03-15 07:50:51 +01:00
jobs:
run-unit-tests:
name: Run Unit Tests
2024-03-15 07:50:51 +01:00
runs-on: ubuntu-latest
steps:
- name: Checkout (push/pull request)
uses: actions/checkout@v4
if: github.event_name != 'workflow_dispatch'
- name: Checkout (workflow_dispatch)
2024-03-15 07:50:51 +01:00
uses: actions/checkout@v4
with:
ref: ${{ inputs.ref }}
if: github.event_name == 'workflow_dispatch'
2024-03-15 07:50:51 +01:00
- name: Set up Node.js
uses: actions/setup-node@v4
with:
node-version: 20
- name: Install dependencies
run: npm ci
- name: Run tests
run: npm test