Compare commits

..

1 Commits

Author SHA1 Message Date
3374d3a287 chore: implement basic tests
All checks were successful
Build Test / test (pull_request) Successful in 24s
JS Unit Tests / test (pull_request) Successful in 22s
PHP Unit Tests / test (pull_request) Successful in 1m2s
Signed-off-by: Sebastian Krupinski <krupinski01@gmail.com>
2026-02-15 22:06:37 -05:00
3 changed files with 12 additions and 11 deletions

View File

@@ -4,8 +4,7 @@ on:
pull_request:
jobs:
test-single-module:
name: Single Module (No Dependencies)
test:
runs-on: ubuntu-latest
steps:
@@ -17,7 +16,7 @@ jobs:
path: action-server-install
github-server-url: https://git.ktrix.dev
- name: Install Server Environment
- name: Install Server
uses: ./action-server-install
with:
install-php: 'false'
@@ -26,7 +25,7 @@ jobs:
node-version: '24'
server-path: './server'
- name: Install Mail Manager Module
- name: Install Mail Manager
uses: actions/checkout@v6.0.2
with:
repository: Nodarx/mail_manager
@@ -34,7 +33,7 @@ jobs:
path: server/modules/mail_manager
github-server-url: https://git.ktrix.dev
- name: Checkout PR Module
- name: Checkout Pull Request
uses: actions/checkout@v6.0.2
with:
repository: ${{ github.repository }}

View File

@@ -6,6 +6,7 @@ on:
jobs:
test:
runs-on: ubuntu-latest
steps:
- name: Retrieve Server Install Action
uses: actions/checkout@v6.0.2
@@ -15,7 +16,7 @@ jobs:
path: action-server-install
github-server-url: https://git.ktrix.dev
- name: Install Server Environment
- name: Install Server
uses: ./action-server-install
with:
install-php: 'false'
@@ -24,7 +25,7 @@ jobs:
node-version: '24'
server-path: './server'
- name: Install Mail Manager Module
- name: Install Mail Manager
uses: actions/checkout@v6.0.2
with:
repository: Nodarx/mail_manager
@@ -32,7 +33,7 @@ jobs:
path: server/modules/mail_manager
github-server-url: https://git.ktrix.dev
- name: Checkout PR Module
- name: Checkout Pull Request
uses: actions/checkout@v6.0.2
with:
repository: ${{ github.repository }}

View File

@@ -6,6 +6,7 @@ on:
jobs:
test:
runs-on: ubuntu-latest
steps:
- name: Retrieve Server Install Action
uses: actions/checkout@v6.0.2
@@ -15,7 +16,7 @@ jobs:
path: action-server-install
github-server-url: https://git.ktrix.dev
- name: Install Server Environment
- name: Install Server
uses: ./action-server-install
with:
install-php: 'true'
@@ -24,7 +25,7 @@ jobs:
node-version: '24'
server-path: './server'
- name: Install Mail Manager Module
- name: Install Mail Manager
uses: actions/checkout@v6.0.2
with:
repository: Nodarx/mail_manager
@@ -32,7 +33,7 @@ jobs:
path: server/modules/mail_manager
github-server-url: https://git.ktrix.dev
- name: Checkout PR Module
- name: Checkout Pull Request
uses: actions/checkout@v6.0.2
with:
repository: ${{ github.repository }}