Skip to content

feat: use newest Angular features such as signals and more + use vitest #186

feat: use newest Angular features such as signals and more + use vitest

feat: use newest Angular features such as signals and more + use vitest #186

Workflow file for this run

name: Tests
on:
push:
branches: [ master ]
pull_request:
branches: [ master ]
jobs:
tests:
runs-on: ubuntu-latest
services:
mongodb:
image: mongo:5.0.13
ports:
- 27017:27017
if: "!contains(github.event.head_commit.message, '[skip tests]')"
steps:
- uses: actions/checkout@v4
- uses: actions/setup-node@v4
with:
node-version: '24'
cache: 'npm'
- run: npm ci
- run: npm run test -- --watch=false
- run: npm run test:be