-
-
Notifications
You must be signed in to change notification settings - Fork 2
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
- Loading branch information
Dennis Eichhorn
committed
Apr 24, 2024
1 parent
2b96c4e
commit 16b5b00
Showing
102 changed files
with
640 additions
and
282 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,73 @@ | ||
name: CI | ||
|
||
on: | ||
workflow_call: | ||
secrets: | ||
GH_TOKEN: | ||
required: true | ||
GH_PAT: | ||
required: true | ||
CODECOV_TOKEN: | ||
required: true | ||
|
||
jobs: | ||
codestyle-tests: | ||
runs-on: ubuntu-latest | ||
if: "!contains(github.event.head_commit.message, 'NO_CI')" | ||
steps: | ||
- name: Checkout Repository | ||
uses: actions/checkout@main | ||
with: | ||
fetch-depth: 1 | ||
- name: Checkout Build Repository | ||
uses: actions/checkout@main | ||
with: | ||
fetch-depth: 1 | ||
ref: develop | ||
repository: Karaka-Management/Build | ||
path: Build | ||
- name: Install NPM | ||
uses: actions/setup-node@v3 | ||
with: | ||
node-version: '14' | ||
cache: 'npm' | ||
- run: npm install | ||
- name: eslint | ||
run: npx eslint ./ -c Build/Config/.eslintrc.json --fix | ||
- name: Check for modified files | ||
if: always() | ||
id: git-format-check | ||
run: echo "modified=$(if git diff-index -G --quiet HEAD --; then echo "false"; else echo "true"; fi)" >> $GITHUB_OUTPUT | ||
- name: Push changes | ||
if: steps.git-format-check.outputs.modified == 'true' | ||
run: | | ||
git config --global user.name 'Formatter Bot' | ||
git config --global user.email '[email protected]' | ||
git remote set-url origin https://x-access-token:${{ secrets.GH_TOKEN }}@github.com/${{ github.repository }} | ||
git commit -am "Automated formatting changes (NO_CI)" | ||
git push | ||
code-tests: | ||
runs-on: ubuntu-latest | ||
if: "!contains(github.event.head_commit.message, 'NO_CI')" | ||
steps: | ||
- name: Checkout Repository | ||
uses: actions/checkout@main | ||
with: | ||
fetch-depth: 1 | ||
- name: Checkout Build Repository | ||
uses: actions/checkout@main | ||
with: | ||
fetch-depth: 1 | ||
ref: develop | ||
repository: Karaka-Management/Build | ||
path: Build | ||
- name: Install NPM | ||
uses: actions/setup-node@v3 | ||
with: | ||
node-version: '14' | ||
cache: 'npm' | ||
- run: npm install | ||
- name: jasmine | ||
run: | | ||
Build/Config/jasmine_build.sh | ||
npx jasmine --config=Build/Config/jasmine.json |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Submodule Build
updated
3 files
+10 −0 | Config/jasmine.json | |
+13 −0 | Config/jasmine_build.sh | |
+0 −251 | Config/snippets.code-snippets |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Submodule Developer-Guide
updated
12 files
+0 −8 | SUMMARY.md | |
+2 −2 | application/concepts/tables.md | |
+1 −1 | general/first_steps.md | |
+3 −3 | general/setup.md | |
+1 −1 | phpOMS/basics/views.md | |
+1 −1 | phpOMS/datastorage/cache.md | |
+1 −1 | phpOMS/datastorage/session.md | |
+2 −2 | phpOMS/services/localization.md | |
+36 −10 | quality/inspections.md | |
+1 −1 | standards/cpp.md | |
+2 −2 | standards/documentation.md | |
+1 −1 | standards/general.md |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Submodule Admin
updated
17 files
Submodule Draw
updated
4 files
+7 −2 | .github/workflows/main.yml | |
+6 −6 | Controller.js | |
+1 −1 | Models/DrawType.js | |
+49 −25 | Models/Editor.js |
Submodule Editor
updated
3 files
+7 −2 | .github/workflows/main.yml | |
+5 −4 | Controller.js | |
+30 −29 | Models/Editor.js |
Submodule Help
updated
7 files
Submodule Helper
updated
from 49c59c to 2a5330
Submodule HumanResourceTimeRecording
updated
25 files
Oops, something went wrong.