Skip to content

Merge pull request #1505 from jhipster/dependabot/npm_and_yarn/vite-5… #4067

Merge pull request #1505 from jhipster/dependabot/npm_and_yarn/vite-5…

Merge pull request #1505 from jhipster/dependabot/npm_and_yarn/vite-5… #4067

name: Test Integration OAUTH
concurrency:
# Group PRs by head_ref, push to main branch by commit id, and others branch by ref.
group: ${{ github.workflow }}-${{ github.head_ref || (github.ref == 'refs/heads/main' && github.sha) || github.ref }}
cancel-in-progress: true
on:
push:
branches:
- main
pull_request:
jobs:
applications:
name: ${{ matrix.app-type }}
runs-on: ${{ matrix.os }}
if: "!contains(github.event.head_commit.message, '[ci skip]') && !contains(github.event.head_commit.message, '[skip ci]')"
timeout-minutes: 40
defaults:
run:
working-directory: ${{ github.workspace }}/app
strategy:
fail-fast: false
matrix:
node_version: [20]
os: [ubuntu-22.04]
app-type:
- oauth-with-angular-app
- oauth-with-angular-cqrs-app
- oauth-with-mssql-app
- oauth-with-mysql-app
- oauth-with-mongo-app
- oauth-with-mongo-cqrs-app
- oauth-with-oracle-app
- oauth-with-postgres-app
- oauth-with-react-app
- oauth-with-vue-app
include:
- app-type: oauth-with-angular-app
arg: 'import-jdl'
extra-args: '--with-entities'
- app-type: oauth-with-angular-cqrs-app
arg: 'import-jdl'
extra-args: '--with-entities'
- app-type: oauth-with-mssql-app
arg: 'no'
- app-type: oauth-with-mysql-app
arg: 'no'
- app-type: oauth-with-mongo-app
arg: 'no'
- app-type: oauth-with-mongo-cqrs-app
arg: 'no'
- app-type: oauth-with-oracle-app
arg: 'no'
- app-type: oauth-with-postgres-app
arg: 'no'
- app-type: oauth-with-react-app
arg: 'import-jdl'
extra-args: '--with-entities'
- app-type: oauth-with-vue-app
arg: 'import-jdl'
extra-args: '--with-entities'
env:
JHI_APP: ${{ matrix.app-type }}
JHI_ARG: ${{ matrix.arg }}
steps:
- uses: actions/checkout@v4
with:
path: jhipster-dotnetcore
fetch-depth: 2
- uses: jhipster/actions/setup-runner@v0
with:
java-version: 17
node-version: ${{ matrix.node_version }}
binary-dir: ${{ github.workspace }}/jhipster-dotnetcore/cli/
- uses: actions/setup-dotnet@v3
with:
dotnet-version: '7.0.x'
- name: git history
run: git --no-pager log -n 10 --graph --pretty='%Cred%h%Creset -%C(yellow)%d%Creset %s %Cgreen(%cr) %C(bold blue) <%an>%Creset' --abbrev-commit
working-directory: ${{ github.workspace }}/jhipster-dotnetcore
- name: PREPARE jhipster env
working-directory: ${{ github.workspace }}/jhipster-dotnetcore
run: npm ci && npm link
- name: 'GENERATE JHipster.NET app'
run: cli.cjs generate-sample ${{ matrix.app-type }} --skip-install --skip-checks --no-insight --with-entities
- uses: jhipster/actions/compare-sample@v0
id: compare
if: >-
github.event.pull_request &&
!contains(github.event.pull_request.labels.*.name, 'pr: disable-compare')
with:
generator-path: jhipster-dotnetcore
cmd: cli.cjs generate-sample ${{ matrix.app-type }} --skip-install --skip-checks --no-insight --with-entities
- name: 'INSTALL AND BUILD DEPENDENCIES of generated app'
run: dotnet build
env:
NODE_ENV: development
APP_VERSION: 1.0
- name: 'GENERATE JHipster.NET entities'
run: ../jhipster-dotnetcore/test-integration/scripts/04-generate-entities-sample.sh $JHI_APP $JHI_ARG
- name: 'RUN CLIENT UNIT TESTS of generated app'
run: npm test
- name: 'RUN SERVER UNIT TESTS of generated app'
run: ../jhipster-dotnetcore/test-integration/scripts/06-run-generated-server-tests-of-sample.sh $JHI_APP
- name: 'VERIFY FORMAT'
run: ../jhipster-dotnetcore/test-integration/scripts/09-verify-format.sh $JHI_APP
- name: Dump docker logs
if: always()
uses: jwalton/gh-docker-logs@v2