Files
morning-report/.github/workflows/test.yml
Cory Sanin b51d014c80
All checks were successful
NPM Audit Check / Check NPM audit (push) Successful in -2m18s
Unit tests / Unit tests (push) Successful in -2m13s
fix test workflow
2025-08-24 15:12:34 -05:00

32 lines
541 B
YAML

name: Unit tests
on:
push:
branches: [ master ]
pull_request:
branches: [ master ]
jobs:
npm_test:
name: Unit tests
runs-on: ubuntu-latest
timeout-minutes: 20
strategy:
fail-fast: true
permissions:
contents: read
steps:
- name: Checkout repository
uses: https://github.com/actions/checkout@v4
- name: Setup nodejs
uses: https://github.com/actions/setup-node@v4
- name: Install dependencies
run: npm ci
- run: npm test
name: Run tests