Skip to content

Commit

Permalink
debugging action
Browse files Browse the repository at this point in the history
  • Loading branch information
Jan-Thurner committed Aug 13, 2024
1 parent a9a7e49 commit 2e14693
Showing 1 changed file with 11 additions and 11 deletions.
22 changes: 11 additions & 11 deletions .github/workflows/analysis-of-endpoint-connections.yml
Original file line number Diff line number Diff line change
Expand Up @@ -13,19 +13,19 @@ jobs:
timeout-minutes: 10
runs-on: ubuntu-latest
steps:
- name: Checkout code
- name: checkout code
uses: actions/checkout@v4
with:
fetch-depth: 0

- name: Set up JDK 21
- name: set up JDK 21
uses: actions/setup-java@v2
with:
java-version: '${{ env.java }}'
distribution: 'adopt'

# Analyze the client sided REST-API calls
- name: Set up Node.js
- name: set up node.js
uses: actions/setup-node@v4
with:
node-version: '${{ env.node }}'
Expand All @@ -39,10 +39,10 @@ jobs:
- name: parse server sided Endpoints
run: ./gradlew :supporting_scripts:analysis-of-endpoint-connections:runEndpointParser

- name: Upload JSON files
- name: upload parsing results
uses: actions/upload-artifact@v4
with:
name: json-files
name: parsing results
path: |
supporting_scripts/analysis-of-endpoint-connections/endpoints.json
supporting_scripts/analysis-of-endpoint-connections/restCalls.json
Expand All @@ -58,30 +58,30 @@ jobs:
fetch-depth: 0

# Analyze the server sided endpoints
- name: Set up JDK 21
- name: set up JDK 21
uses: actions/setup-java@v4
with:
distribution: 'temurin'
java-version: '${{ env.java }}'

- name: Download JSON files
- name: download JSON files
uses: actions/download-artifact@v4
with:
name: json-files
path: supporting_scripts/analysis-of-endpoint-connections/

- name: Analyze Endpoints
- name: analyze endpoints
run:
./gradlew :supporting_scripts:analysis-of-endpoint-connections:runEndpointAnalysis

- name: Analyze Rest Calls
- name: analyze rest calls
run:
./gradlew :supporting_scripts:analysis-of-endpoint-connections:runRestCallAnalysis

- name: Upload Analysis results
- name: upload analysis results
uses: actions/upload-artifact@v4
with:
name: json-files
name: analysis results
path: |
supporting_scripts/analysis-of-endpoint-connections/endpointAnalysisResult.json
supporting_scripts/analysis-of-endpoint-connections/restCallAnalysisResult.json

0 comments on commit 2e14693

Please sign in to comment.