-
Notifications
You must be signed in to change notification settings - Fork 1
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Merge remote-tracking branch 'origin/feat-zms-2936-initial-setup-webc…
…omponent' into feat-zms-2936-initial-setup-webcomponent
- Loading branch information
Showing
163 changed files
with
24,467 additions
and
13,819 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
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,35 @@ | ||
name: Frontend Build | ||
|
||
on: | ||
push: | ||
|
||
jobs: | ||
build: | ||
runs-on: ubuntu-latest | ||
env: | ||
TZ: Europe/Berlin # timezone | ||
strategy: | ||
fail-fast: false | ||
matrix: | ||
include: # hier müssen die Pfade angegeben werden | ||
- app-path: zmscitizenview | ||
steps: | ||
- uses: actions/checkout@11bd71901bbe5b1630ceea73d27597364c9af683 # v4.2.2 | ||
- if: ${{hashFiles(format('./{0}/package.json', matrix.app-path))!=null}} | ||
id: node | ||
uses: it-at-m/.github/.github/actions/action-npm-build@main | ||
with: | ||
app-path: "${{ matrix.app-path }}" | ||
- if: ${{hashFiles(format('./{0}/pom.xml', matrix.app-path))!=null}} | ||
id: maven | ||
uses: it-at-m/.github/.github/actions/action-maven-build@main | ||
with: | ||
app-path: "${{ matrix.app-path }}" | ||
- uses: it-at-m/.github/.github/actions/action-build-image@main | ||
with: | ||
path: "${{ matrix.app-path }}" | ||
image-name: "${{ matrix.app-path }}" | ||
artifact-name: ${{join(steps.*.outputs.artifact-name)}} | ||
registry-password: ${{ secrets.GITHUB_TOKEN }} | ||
registry-username: ${{ github.actor }} | ||
image-tags: "branch-${{ github.ref_name }}" |
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 |
---|---|---|
@@ -1,5 +1,6 @@ | ||
.idea/ | ||
.ddev/.env | ||
.ddev/.env.template | ||
/local/ | ||
.DS_Store | ||
.vscode/launch.json | ||
|
Large diffs are not rendered by default.
Oops, something went wrong.
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
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,3 +1,5 @@ | ||
EUPL License | ||
|
||
EUROPEAN UNION PUBLIC LICENCE v. 1.2 | ||
EUPL © the European Union 2007, 2016 | ||
|
||
|
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
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,7 +1,6 @@ | ||
config.php | ||
**.swp | ||
tags | ||
|
||
.DS_* | ||
/vendor/ | ||
composer.lock | ||
coverage |
Oops, something went wrong.