Skip to content
This repository has been archived by the owner on Jun 21, 2024. It is now read-only.

Bump the angular group with 9 updates #217

Bump the angular group with 9 updates

Bump the angular group with 9 updates #217

Workflow file for this run

name: Build recipe
on:
push:
branches: [ "**" ]
pull_request:
branches: [ "main" ]
jobs:
build:
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@v3
- name: Set up Node.js 20.x
uses: actions/setup-node@v3
with:
node-version: '20.x'
cache: 'npm'
- run: npm ci
- name: lint frontend
run: npm run lint
- name: Set up JDK 21
uses: actions/setup-java@v3
with:
java-version: '21'
distribution: 'temurin'
cache: maven
- name: lint backend
run: mvn -B spotless:check
- name: test frontend
run: npm run test:headless
- name: test backend
run: mvn -B test
- name: build frontend
run: npm run build
- name: build backend
run: mvn -B -DskipTests=true clean install