github actions maven step failing but shown as success

18 views Asked by At

i am trying to run curcumber test with maven on github actions.

If i run the test(which should fail) the test is failing but shown as success. Do you have an hit what is missing?

Maven test is failing: enter image description here

But Job i shown as success: enter image description here

code from my actions file

- name: Set up JDK  
      uses: actions/[email protected]
      with:
        distribution: adopt
        java-version: '8'
        
    - name: Run tests with maven
      run: mvn -Dchromedriver_exe_path=${{ env.chromedriver_exe_path }} -Dbrowser=${{ env.browser }} -Denvironment=${{ env.environment }} -Dset_browser_dimensions=${{ env.use_monitor_size }} -Dheadless=true "-Dcucumber.filter.tags=${{ env.tags }}" -D clean verify --no-transfer-progress
      env:
        DISPLAY: ":2"

 
    - name: Process maven surefire reports
      uses: scacap/action-surefire-report@v1
      with:
       report_paths: '**/target/surefire-reports/*.xml'
      

Job should be shown as failed

0

There are 0 answers