2024-04-10 21:25:41 +02:00
|
|
|
name: Run Tests
|
|
|
|
|
|
|
|
on:
|
|
|
|
push:
|
|
|
|
branches: '*'
|
|
|
|
pull_request:
|
|
|
|
branches: '*'
|
|
|
|
|
|
|
|
jobs:
|
|
|
|
trigger-main-build:
|
|
|
|
runs-on: ubuntu-latest
|
|
|
|
container:
|
2024-04-10 21:32:39 +02:00
|
|
|
image: node:20.11.1-bookworm
|
2024-04-10 21:25:41 +02:00
|
|
|
steps:
|
|
|
|
- uses: actions/checkout@v3
|
|
|
|
with:
|
|
|
|
path: 'server'
|
|
|
|
fetch-depth: 1
|
|
|
|
|
|
|
|
- name: Install Dependencies
|
|
|
|
working-directory: server
|
|
|
|
run: npm ci
|
|
|
|
|
|
|
|
- name: Run Tests
|
|
|
|
working-directory: server
|
|
|
|
run: npm run test
|