Fix relationship for built in entity #54
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: 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: 14.16.0 | |
SPRING_OUTPUT_ANSI_ENABLED: DETECT | |
SPRING_JPA_SHOW_SQL: false | |
JHI_DISABLE_WEBPACK_LOGS: true | |
NG_CLI_ANALYTICS: false | |
steps: | |
- uses: actions/checkout@v2 | |
- uses: actions/setup-node@v1 | |
with: | |
node-version: 14.16.0 | |
- uses: actions/setup-java@v1 | |
with: | |
java-version: '11.x' | |
- name: Install node.js packages | |
run: npm install | |
- 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: Deploy to Heroku | |
if: github.event_name == 'push' && github.ref == 'refs/heads/main' | |
uses: akhileshns/[email protected] | |
with: | |
heroku_api_key: ${{ secrets.HEROKU_API_KEY }} | |
heroku_app_name: 'jhipster-7-demo' | |
heroku_email: '[email protected]' | |
- 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 |