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
Jump to file
Failed to load files.
Loading
Diff view
Diff view
11 changes: 11 additions & 0 deletions .github/workflows/build-backend-app-generic.yml
Original file line number Diff line number Diff line change
Expand Up @@ -40,6 +40,17 @@ jobs:
- name: Checkout sources
uses: actions/checkout@50fbc622fc4ef5163becd7fab6573eac35f8462e # v1 v1.2.0

- name: Check for tracked ignored files
run: |
FILES=$(git ls-files -i --exclude-standard)
if [[ -n "$FILES" ]]; then
echo "❌ The following tracked files should be ignored:"
echo "$FILES"
exit 1
else
echo "✅ No tracked ignored files found."
fi

- name: Build with Maven
run: >
mvn --batch-mode -Pjacoco verify
Expand Down
11 changes: 11 additions & 0 deletions .github/workflows/build-backend-lib-generic.yml
Original file line number Diff line number Diff line change
Expand Up @@ -26,6 +26,17 @@ jobs:
- name: Checkout sources
uses: actions/checkout@50fbc622fc4ef5163becd7fab6573eac35f8462e # v1 v1.2.0

- name: Check for tracked ignored files
run: |
FILES=$(git ls-files -i --exclude-standard)
if [[ -n "$FILES" ]]; then
echo "❌ The following tracked files should be ignored:"
echo "$FILES"
exit 1
else
echo "✅ No tracked ignored files found."
fi

- name: Build with Maven
run: >
mvn --batch-mode -Pjacoco verify
Expand Down
28 changes: 20 additions & 8 deletions .github/workflows/build-frontend-app-generic.yml
Original file line number Diff line number Diff line change
Expand Up @@ -40,15 +40,15 @@ jobs:
name: Check licenses headers
runs-on: ubuntu-latest
steps:
- name: Checkout sources
uses: actions/checkout@11bd71901bbe5b1630ceea73d27597364c9af683 # v4 v4.2.2
with:
persist-credentials: false
- name: Checkout sources
uses: actions/checkout@11bd71901bbe5b1630ceea73d27597364c9af683 # v4 v4.2.2
with:
persist-credentials: false

- name: Check License Header (Check Mode)
uses: apache/skywalking-eyes/header@6b2529214f6b1ccee3ec92bb0adfeabf6f66f538 # v0.5.0
with:
config: ${{ inputs.licensercPath }}
- name: Check License Header (Check Mode)
uses: apache/skywalking-eyes/header@6b2529214f6b1ccee3ec92bb0adfeabf6f66f538 # v0.5.0
with:
config: ${{ inputs.licensercPath }}

build:
runs-on: ubuntu-latest
Expand All @@ -59,6 +59,18 @@ jobs:
uses: actions/checkout@11bd71901bbe5b1630ceea73d27597364c9af683 # v4 v4.2.2
with:
persist-credentials: false

- name: Check for tracked ignored files
run: |
FILES=$(git ls-files -i --exclude-standard)
if [[ -n "$FILES" ]]; then
echo "❌ The following tracked files should be ignored:"
echo "$FILES"
exit 1
else
echo "✅ No tracked ignored files found."
fi

- uses: actions/setup-node@cdca7365b2dadb8aad0a33bc7601856ffabcc48e # v4 v4.3.0
with:
node-version: 22
Expand Down
27 changes: 19 additions & 8 deletions .github/workflows/build-frontend-lib-generic.yml
Original file line number Diff line number Diff line change
Expand Up @@ -27,15 +27,15 @@ jobs:
name: Check licenses headers
runs-on: ubuntu-latest
steps:
- name: Checkout sources
uses: actions/checkout@11bd71901bbe5b1630ceea73d27597364c9af683 # v4 v4.2.2
with:
persist-credentials: false
- name: Checkout sources
uses: actions/checkout@11bd71901bbe5b1630ceea73d27597364c9af683 # v4 v4.2.2
with:
persist-credentials: false

- name: Check License Header (Check Mode)
uses: apache/skywalking-eyes/header@6b2529214f6b1ccee3ec92bb0adfeabf6f66f538 # v0.5.0
with:
config: ${{ inputs.licensercPath }}
- name: Check License Header (Check Mode)
uses: apache/skywalking-eyes/header@6b2529214f6b1ccee3ec92bb0adfeabf6f66f538 # v0.5.0
with:
config: ${{ inputs.licensercPath }}

build:
runs-on: ubuntu-latest
Expand All @@ -45,6 +45,17 @@ jobs:
with:
persist-credentials: false

- name: Check for tracked ignored files
run: |
FILES=$(git ls-files -i --exclude-standard)
if [[ -n "$FILES" ]]; then
echo "❌ The following tracked files should be ignored:"
echo "$FILES"
exit 1
else
echo "✅ No tracked ignored files found."
fi

- uses: actions/setup-node@cdca7365b2dadb8aad0a33bc7601856ffabcc48e # v4 v4.3.0
with:
node-version: 22
Expand Down