Fix Notification entity: add @Nationalized for NVARCHAR(MAX) column #25
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
| name: CI | |
| on: | |
| workflow_dispatch: | |
| push: | |
| branches: [main] | |
| pull_request: | |
| branches: [main] | |
| permissions: | |
| contents: read | |
| checks: write | |
| jobs: | |
| backend: | |
| name: Backend Build & Test | |
| runs-on: ubuntu-latest | |
| defaults: | |
| run: | |
| working-directory: backend | |
| steps: | |
| - uses: actions/checkout@v4 | |
| - name: Set up Java 21 | |
| uses: actions/setup-java@v4 | |
| with: | |
| distribution: temurin | |
| java-version: '21' | |
| cache: maven | |
| - name: Build and test | |
| run: | | |
| chmod +x ./mvnw | |
| ./mvnw -B verify | |
| - name: Publish backend test results | |
| uses: dorny/test-reporter@v1 | |
| if: always() | |
| with: | |
| name: Backend Test Results | |
| path: backend/target/surefire-reports/*.xml | |
| reporter: java-junit | |
| frontend: | |
| name: Frontend Build & Test | |
| runs-on: ubuntu-latest | |
| defaults: | |
| run: | |
| working-directory: frontend | |
| steps: | |
| - uses: actions/checkout@v4 | |
| - name: Set up Node 20 | |
| uses: actions/setup-node@v4 | |
| with: | |
| node-version: '20' | |
| cache: npm | |
| cache-dependency-path: frontend/package-lock.json | |
| - name: Install dependencies | |
| run: npm ci | |
| - name: Run tests | |
| run: npm test | |
| - name: Publish frontend test results | |
| uses: dorny/test-reporter@v1 | |
| if: always() | |
| with: | |
| name: Frontend Test Results | |
| path: frontend/test-results/junit.xml | |
| reporter: java-junit | |
| - name: Build | |
| run: npm run build |