Skip to content
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension


Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
38 changes: 38 additions & 0 deletions .github/workflows/test-bug-server.yml
Original file line number Diff line number Diff line change
@@ -0,0 +1,38 @@
name: BUG Server Tests

permissions:
contents: read

on:
push:
branches:
- main
paths:
- "src/server/**"
- "config/**"
- "package.json"
- "package-lock.json"
- ".github/workflows/test-bug-server.yml"
pull_request:
paths:
- "src/server/**"
- "config/**"
- "package.json"
- "package-lock.json"
- ".github/workflows/test-bug-server.yml"

jobs:
server-tests:
name: Server Tests
runs-on: ubuntu-latest
steps:
- name: checkout repository
uses: actions/checkout@v6

- name: setup node
uses: actions/setup-node@v6
with:
node-version: 22

- name: run dockerized server tests
run: npm run test:server
Original file line number Diff line number Diff line change
Expand Up @@ -10,7 +10,7 @@ on:
paths:
- "src/modules/**"
- "src/server/core/**"
- ".github/workflows/module-container-tests.yml"
- ".github/workflows/test-module-container.yml"

jobs:
discover-modules:
Expand Down
1 change: 1 addition & 0 deletions .gitignore
Original file line number Diff line number Diff line change
Expand Up @@ -19,6 +19,7 @@ node_modules
Dockerfile*
!/src/server/Dockerfile
!/src/server/Dockerfile.dev
!/src/server/Dockerfile.test
!/src/server/services/dockerfile-write.js

# global environment files
Expand Down
Loading