Merge remote-tracking branch 'origin/feature/development/analyze-REST… #3533
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
on: | |
workflow_dispatch: | |
push: | |
# Keep in sync with build.yml and test.yml and codeql-analysis.yml | |
env: | |
CI: true | |
node: 20 | |
java: 21 | |
jobs: | |
parse-rest-calls-and-endpoints: | |
timeout-minutes: 10 | |
runs-on: ubuntu-latest | |
steps: | |
- name: checkout code | |
uses: actions/checkout@v4 | |
with: | |
fetch-depth: 0 | |
- name: set up JDK 21 | |
uses: actions/setup-java@v2 | |
with: | |
java-version: '${{ env.java }}' | |
distribution: 'adopt' | |
- name: set up node.js | |
uses: actions/setup-node@v4 | |
with: | |
node-version: '${{ env.node }}' | |
- name: parse client sided REST-API calls | |
run: | | |
npm install | |
tsc -p supporting_scripts/analysis-of-endpoint-connections/src/main/typeScript/tsconfig.analysisOfEndpointConnections.json | |
node supporting_scripts/analysis-of-endpoint-connections/src/main/typeScript/AnalysisOfEndpointConnectionsClient.js | |
- name: parse server sided Endpoints | |
run: ./gradlew :supporting_scripts:analysis-of-endpoint-connections:runEndpointParser | |
- name: upload parsing results | |
uses: actions/upload-artifact@v4 | |
with: | |
name: parsing results | |
path: | | |
supporting_scripts/analysis-of-endpoint-connections/endpoints.json | |
supporting_scripts/analysis-of-endpoint-connections/restCalls.json | |
analysis-of-endpoint-connections: | |
needs: parse-rest-calls-and-endpoints | |
timeout-minutes: 10 | |
runs-on: ubuntu-latest | |
steps: | |
- name: Checkout code | |
uses: actions/checkout@v4 | |
with: | |
fetch-depth: 0 | |
- name: set up JDK 21 | |
uses: actions/setup-java@v4 | |
with: | |
distribution: 'temurin' | |
java-version: '${{ env.java }}' | |
- name: download JSON files | |
uses: actions/download-artifact@v4 | |
with: | |
name: parsing results | |
path: supporting_scripts/analysis-of-endpoint-connections/ | |
- name: analyze endpoints | |
run: | |
./gradlew :supporting_scripts:analysis-of-endpoint-connections:runEndpointAnalysis | |
- name: analyze rest calls | |
run: | |
./gradlew :supporting_scripts:analysis-of-endpoint-connections:runRestCallAnalysis | |
- name: upload analysis results | |
uses: actions/upload-artifact@v4 | |
with: | |
name: analysis results | |
path: | | |
supporting_scripts/analysis-of-endpoint-connections/endpointAnalysisResult.json | |
supporting_scripts/analysis-of-endpoint-connections/restCallAnalysisResult.json |