Bump org.springframework.boot:spring-boot-starter-data-jpa #637
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: Application CI | |
on: [push, pull_request] | |
jobs: | |
pipeline: | |
name: blog pipeline | |
runs-on: ubuntu-latest | |
if: "!contains(github.event.head_commit.message, '[ci skip]') && !contains(github.event.head_commit.message, '[skip ci]') && !contains(github.event.pull_request.title, '[skip ci]') && !contains(github.event.pull_request.title, '[ci skip]')" | |
timeout-minutes: 40 | |
env: | |
NODE_VERSION: 20.15.0 | |
SPRING_OUTPUT_ANSI_ENABLED: DETECT | |
SPRING_JPA_SHOW_SQL: false | |
JHI_DISABLE_WEBPACK_LOGS: true | |
NG_CLI_ANALYTICS: false | |
steps: | |
- uses: actions/checkout@v4 | |
- uses: actions/setup-node@v4 | |
with: | |
node-version: 20.15.0 | |
- uses: actions/setup-java@v4 | |
with: | |
distribution: 'temurin' | |
java-version: 21 | |
- name: Install Node.js packages | |
run: npm install | |
- name: Install Snyk CLI | |
run: | | |
curl --compressed https://static.snyk.io/cli/latest/snyk-linux -o snyk | |
chmod +x snyk | |
- name: Snyk test | |
continue-on-error: true | |
run: ./snyk test --all-projects | |
env: | |
SNYK_TOKEN: ${{ secrets.SNYK_TOKEN }} | |
- name: Snyk monitor | |
continue-on-error: true | |
run: ./snyk monitor --all-projects | |
env: | |
SNYK_TOKEN: ${{ secrets.SNYK_TOKEN }} | |
- name: Run backend test | |
run: | | |
chmod +x mvnw | |
npm run ci:backend:test | |
- name: Run frontend test | |
run: npm run ci:frontend:test | |
- name: Package application | |
run: npm run java:jar:prod | |
- name: 'E2E: Package' | |
run: npm run ci:e2e:package | |
- name: 'E2E: Prepare' | |
run: npm run ci:e2e:prepare | |
- name: 'E2E: Run' | |
run: npm run ci:e2e:run | |
env: | |
CYPRESS_ENABLE_RECORD: false | |
CYPRESS_PROJECT_ID: ${{ secrets.CYPRESS_PROJECT_ID }} | |
CYPRESS_RECORD_KEY: ${{ secrets.CYPRESS_RECORD_KEY }} | |
- name: 'E2E: Teardown' | |
run: npm run ci:e2e:teardown |