- 
  Notifications
 
You must be signed in to change notification settings  - Fork 0
 
Bump @angular/core from 19.2.4 to 20.3.4 in /crud-angular #85
Workflow file for this run
 
 
 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
 
 
 
 
 
  
 # This workflow will build a Java project with Maven, and cache/restore any dependencies to improve the workflow execution time
 
  
 # For more information see: https://docs.github.com/en/actions/automating-builds-and-tests/building-and-testing-java-with-maven
 
 
  
 # This workflow uses actions that are not certified by GitHub.
 
  
 # They are provided by a third-party and are governed by
 
  
 # separate terms of service, privacy policy, and support
 
  
 # documentation.
 
 
  
 name: CI with Maven and Angular
 
 
  
 on:
 
  
  push:
 
  
  branches: [ "main" ]
 
  
  pull_request:
 
  
  branches: [ "main" ]
 
 
  
 jobs:
 
  
  java:
 
  
  name: Maven Build
 
  
  runs-on: ubuntu-latest
 
  
  steps:
 
  
  - uses: actions/checkout@v3
 
  
  - name: Set up JDK 21
 
  
  uses: actions/setup-java@v3
 
  
  with:
 
  
  java-version: '21'
 
  
  distribution: 'temurin'
 
  
  cache: maven
 
  
  - name: Build with Maven
 
  
  run: mvn -B package --file crud-spring/pom.xml
 
  
  angular:
 
  
  name: Angular Build
 
  
  runs-on: ubuntu-latest
 
  
  steps:
 
  
  - name: Checkout the source code
 
  
  uses: actions/checkout@v3
 
  
  - name: Setup Node.js
 
  
  uses: actions/setup-node@v3
 
  
  with:
 
  
  node-version: 20
 
  
  cache: 'npm'
 
  
  cache-dependency-path: crud-angular/package-lock.json
 
  
  - name: Install dependencies
 
  
  run: npm ci
 
  
  working-directory: crud-angular
 
  
  - name: Run tests
 
  
  run: npm run test:ci
 
  
  working-directory: crud-angular
 
  
  - name: Build
 
  
  run: npm run build
 
  
  working-directory: crud-angular