This repository has been archived by the owner on Jun 21, 2024. It is now read-only.
chore(deps): bump org.springframework.boot:spring-boot-starter-parent #227
Workflow file for this run
This file contains 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: 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 |