Skip to content
Open
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
The table of contents is too big for display.
Diff view
Diff view
  •  
  •  
  •  
67 changes: 0 additions & 67 deletions .circleci/config.yml

This file was deleted.

21 changes: 14 additions & 7 deletions .dockerignore
Original file line number Diff line number Diff line change
@@ -1,10 +1,17 @@
.phpunit.cache/
.env*
.git/
.php*.cache
.phpunit.cache
.wireit/
*.log
data/
logs/
node_modules/
tools/composer.phar
vendor/
web/components/
.php*.cache
.env*
*.log
packages/backend-php/docs/
packages/backend-php/tools/composer.phar
packages/backend-php/vendor/
packages/frontend-web/web/components/
packages/typescript
build-cache/
packages/*/node_modules/
packages/*/.wireit/
16 changes: 8 additions & 8 deletions .editorconfig
Original file line number Diff line number Diff line change
@@ -1,13 +1,13 @@
# EditorConfig is awesome: https://EditorConfig.org

# top-most EditorConfig file
root = true
root=true

[*]
indent_style = space
indent_size = 4
end_of_line = lf
charset = utf-8
trim_trailing_whitespace = true
insert_final_newline = true
print_width = 120
indent_style=space
indent_size=4
end_of_line=lf
charset=utf-8
trim_trailing_whitespace=true
insert_final_newline=true
print_width=120
4 changes: 1 addition & 3 deletions .github/workflows/build-docker.yml
Original file line number Diff line number Diff line change
Expand Up @@ -19,10 +19,8 @@ jobs:
build:
strategy:
matrix:
component: [backend, frontend, webhooker]

component: [backend-php, frontend-react, frontend-web]
runs-on: ubuntu-latest

env:
DOCKERHUB_TEMPLATE: ${{ vars.DOCKERHUB_TEMPLATE_PREFIX }}-${{ matrix.component }}

Expand Down
50 changes: 50 additions & 0 deletions .github/workflows/run-tests.yml
Original file line number Diff line number Diff line change
@@ -0,0 +1,50 @@
name: Run Tests

on:
push:
branches:
- 'main'
- 'master'
- 'trunk'
tags:
- 'v*'
pull_request:
branches:
- 'main'
- 'master'
- 'trunk'
workflow_dispatch:

jobs:
test-php:
strategy:
matrix:
package: [backend-php]
node-version: ['22']
runs-on: ubuntu-latest
steps:
- name: Setup PHP
uses: shivammathur/setup-php@v2
with:
php-version: '8.2'
- name: Checkout
uses: actions/checkout@v4
- name: Install pnpm
uses: pnpm/action-setup@v4
- name: Use Node.js ${{matrix.node-version}}
uses: actions/setup-node@v4
with:
node-version: ${{matrix.node-version}}
cache: 'pnpm'
- name: Install dependencies
run: pnpm install
- name: Test ${{matrix.package}}
run: pnpm --filter "./packages/${{matrix.package}}/" test

shellcheck:
name: Shellcheck
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@v4
- name: Run ShellCheck
uses: ludeeus/action-shellcheck@master
Loading