Skip to content

More informational error handling #4

More informational error handling

More informational error handling #4

Workflow file for this run

name: Unit Tests
on:
push:
branches: [ "master" ]
paths:
- "**.ts"
- "package.json"
- "package-lock.json"
- "tsconfig.json"
- ".github/workflows/tests.yml"
pull_request:
branches: [ "master" ]
paths:
- "**.ts"
- "package.json"
- "package-lock.json"
- "tsconfig.json"
- ".github/workflows/tests.yml"
workflow_dispatch:
jobs:
build:
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@v3
- name: Use Node.js
uses: actions/setup-node@v3
with:
node-version: 18.x
cache: 'npm'
- run: npm ci
- run: npm run test