Add build and publish steps #3

Merged
chimeudeonwop merged 53 commits from feature/setup-workflow-pipeline into main 2025-11-04 18:20:11 +00:00
Showing only changes of commit 217e47ed20 - Show all commits

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."