Compare commits

..

1 Commits

Author SHA1 Message Date
a75d676fa1 chore: implement basic tests
All checks were successful
Build Test / Single Module (No Dependencies) (pull_request) Successful in 21s
JS Unit Tests / test (pull_request) Successful in 23s
PHP Unit Tests / test (pull_request) Successful in 1m8s
Signed-off-by: Sebastian Krupinski <krupinski01@gmail.com>
2026-02-15 22:00:35 -05:00
3 changed files with 11 additions and 12 deletions

View File

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

View File

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

View File

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