Skip to content

Merge PR #485: Polecat status dashboard #56

Merge PR #485: Polecat status dashboard

Merge PR #485: Polecat status dashboard #56

Workflow file for this run

name: tests
on:
pull_request:
push:
branches:
- main
jobs:
unit:
runs-on: ubuntu-latest
timeout-minutes: 15
steps:
- name: Checkout
uses: actions/checkout@v4
- name: Setup Node
uses: actions/setup-node@v4
with:
node-version: "20"
cache: "npm"
- name: Install
run: npm ci
- name: Unit tests
run: npm run test:unit