del
All checks were successful
checks / Set up Node and other necessary dependencies for Frontend Tests and Build (push) Successful in 11s
checks / Set up Java for Backend Tests and Build (push) Successful in 13s
Gitea Actions Demo / Explore-Gitea-Actions-2 (pull_request) Successful in 3s
checks / Set up Node and other necessary dependencies for Frontend Tests and Build (pull_request) Successful in 10s
checks / Set up Java for Backend Tests and Build (pull_request) Successful in 12s

This commit is contained in:
Patrick
2025-10-31 18:25:17 +01:00
parent f8ae4a2665
commit 217e47ed20

View File

@ -81,20 +81,6 @@ jobs:
working-directory: ./frontend
run: yarn lint
- name: Set frontend status
uses: actions/github-script@v7
with:
github-token: ${{ secrets.ACCESS_TOKEN }}
script: |
github.repos.createCommitStatus({
owner: context.repo.owner,
repo: context.repo.repo,
sha: context.sha,
state: 'success',
context: 'CI Frontend',
description: 'Frontend unit tests passed'
})
backend-jobs:
name: Set up Java for Backend Tests and Build
runs-on: ubuntu-latest
@ -167,19 +153,5 @@ jobs:
run:
mvn clean test -Dspring.profiles.active=test
- name: Set backend status
uses: actions/github-script@v7
with:
github-token: ${{ secrets.ACCESS_TOKEN }}
script: |
github.repos.createCommitStatus({
owner: context.repo.owner,
repo: context.repo.repo,
sha: context.sha,
state: 'success',
context: 'CI Backend',
description: 'Backend unit tests passed'
})
- name: Done
run: echo "Workflow successfully completed."