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
4 changed files with 206 additions and 1 deletions
Showing only changes of commit 814550903a - Show all commits

View File

@ -61,11 +61,6 @@ jobs:
git clone --quiet "$CLONE_URL_WITH_AUTH" . git clone --quiet "$CLONE_URL_WITH_AUTH" .
echo "${{ gitea.repository }} cloned successfully." echo "${{ gitea.repository }} cloned successfully."
#Check frontend linting
- name: Check frontend linting
working-directory: ./frontend
run: yarn lint
# Install frontend dependencies and run tests # Install frontend dependencies and run tests
- name: Install dependencies, run tests and build frontend - name: Install dependencies, run tests and build frontend
#uses: actions/cache@v3 #uses: actions/cache@v3
@ -79,6 +74,7 @@ jobs:
frontend-${{ runner.os }}-yarn- frontend-${{ runner.os }}-yarn-
run: | run: |
yarn install --frozen-lockfile yarn install --frozen-lockfile
yarn lint
yarn build yarn build
#yarn test --watchAll=false --ci #yarn test --watchAll=false --ci
@ -151,4 +147,4 @@ jobs:
working-directory: . working-directory: .
run: run:
mvn clean test -Dspring.profiles.active=test mvn clean test -Dspring.profiles.active=test
echo "Backend test and build workflow successfully completed." echo "Backend test and build workflow successfully completed."