ci: update of files from global .github repo (#1922) #776
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: Runtime testing Kotlin models | |
on: | |
push: | |
pull_request: | |
types: [opened, reopened, synchronize, ready_for_review] | |
paths: | |
- 'src/generators/kotlin/**' | |
- 'test/runtime/runtime-kotlin/**' | |
- 'test/runtime/**kotlin**' | |
jobs: | |
test: | |
name: Runtime testing Kotlin Models | |
runs-on: ubuntu-latest | |
steps: | |
- name: Checkout repository | |
uses: actions/checkout@v3 | |
- name: Check package-lock version | |
uses: asyncapi/.github/.github/actions/get-node-version-from-package-lock@master | |
id: lockversion | |
- name: Setup Node.js | |
uses: actions/setup-node@v3 | |
with: | |
node-version: "${{ steps.lockversion.outputs.version }}" | |
cache: 'npm' | |
cache-dependency-path: '**/package-lock.json' | |
- name: Build library | |
run: npm install && npm run build:prod | |
- name: Setup Java | |
uses: actions/setup-java@v2 | |
with: | |
distribution: 'adopt' | |
java-version: '11' | |
- name: Generate Kotlin models | |
run: npm run generate:runtime:kotlin | |
- name: Run runtime tests | |
run: npm run test:runtime:kotlin |