We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
Is there an example how to access in a good & easy way the lcov file from the base branch?
The text was updated successfully, but these errors were encountered:
My current approach is:
- name: Run tests working-directory: ${{ env.WORKING_DIRECTORY }} run: | npm install -g nyc npm run ci - name: Create Coverage Report for base branch run: | mv $WORKING_DIRECTORY/coverage/lcov.info $WORKING_DIRECTORY/coverage/lcov_head.info git fetch git checkout origin/${{ github.event.pull_request.base.ref }} cd $WORKING_DIRECTORY && npm run ci - name: Post Coverage Report uses: romeovs/[email protected] with: lcov-file: "${{ env.WORKING_DIRECTORY }}/coverage/lcov_head.info" lcov-base: "${{ env.WORKING_DIRECTORY }}/coverage/lcov.info" github-token: "${{ secrets.GITHUB_TOKEN }}" delete-old-comments: true
Sorry, something went wrong.
great! @nilsreichardt I was looking for a solution in my fork, I would try it out some stuff to make it a good PR :)
No branches or pull requests
Is there an example how to access in a good & easy way the lcov file from the base branch?
The text was updated successfully, but these errors were encountered: