I been trying to set up a cypress job on GitHub Actions with an asp .net framework (4.5.1) web application using a windows machine.
- name: Cypress run
uses: cypress-io/github-action@v5
with:
build: msbuild cypressdemo.webcypressdemo.web.csproj -p:PublishProfile=FolderProfile -p:DeployOnBuild=true
start-windows: iisexpress /path:${{ github.workspace }}cypressdemo.webinapp.publish /port:8080
browser: edge
headed: true
wait-on: http://localhost:8080
But I m getting the next error:
Response sent: http://localhost:8080/ with HTTP status 500.0
If I run the command on the testing env I can get an iisexpres running with an HTTP status 200, I dont know if its posible this way to test my app.