Skip to content

refactor: unify main project and mentorship service integration before dockerization #1

refactor: unify main project and mentorship service integration before dockerization

refactor: unify main project and mentorship service integration before dockerization #1

Workflow file for this run

name: CI
on:
push:
branches:
- main
- feat/**
pull_request:
jobs:
frontend:
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@v4
- uses: actions/setup-node@v4
with:
node-version: 20
cache: npm
- run: npm ci
- run: npm test
- run: npm run build
mentorship-service:
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@v4
- uses: actions/setup-java@v4
with:
distribution: temurin
java-version: 21
cache: maven
- run: chmod +x services/mentorship-service/mvnw
- working-directory: services/mentorship-service
run: ./mvnw test package