Skip to content

Navigation Menu

Sign in
Appearance settings

Search code, repositories, users, issues, pull requests...

Provide feedback

We read every piece of feedback, and take your input very seriously.

Saved searches

Use saved searches to filter your results more quickly

Sign up
Appearance settings

Bump @angular/core from 19.2.4 to 20.3.3 in /crud-angular #81

Bump @angular/core from 19.2.4 to 20.3.3 in /crud-angular

Bump @angular/core from 19.2.4 to 20.3.3 in /crud-angular #81

Workflow file for this run

# 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

AltStyle によって変換されたページ (->オリジナル) /