question-mark
Stuck on an issue?

Lightrun Answers was designed to reduce the constant googling that comes with debugging 3rd party libraries. It collects links to all the places you might be looking at while hunting down a tough bug.

And, if you’re still stuck at the end, we’re happy to hop on a call to see how we can help out.

Support GitHub Actions

See original GitHub issue

This would make it much easier to switch CI to run on GitHub. This woked for me:

action "Push Coverage" {
  uses = "docker://node:11"
  needs = ["Only Branch Pushes"]
  secrets = ["CODECOV_TOKEN"]
  runs = "bash -c"
  args = ["npx codecov --disable=detect --commit=$GITHUB_SHA --branch=${GITHUB_REF#refs/heads/}"]
}

It would be even cooler if you offered an Action that could be run on any project (Node or otherwise)!

action "Push Coverage" {
  uses = "codecov/action@master"
  needs = ["Test"]
  secrets = ["CODECOV_TOKEN"]
}

Issue Analytics

  • State:closed
  • Created 5 years ago
  • Reactions:17
  • Comments:16 (4 by maintainers)

github_iconTop GitHub Comments

13reactions
domoritzcommented, Oct 17, 2019

@jerrode do you have an update for this? Codecov still doesn’t seem to work on github actions without a token (which means it doesn’t work in forks for PRs).

12reactions
jerrodecommented, Jan 10, 2019

Thanks @j-f1 ! Github Actions is in the product pipeline for this quarter

Read more comments on GitHub >

github_iconTop Results From Across the Web

GitHub Actions Support
GitHub Support is here to help. Learn about GitHub products, browse our helpful resources, and contact support with your questions.
Read more >
GitHub Actions Documentation
Automate, customize, and execute your software development workflows right in your repository with GitHub Actions. You can discover, create, and share ...
Read more >
Support Requests · Actions · GitHub Marketplace
Support Requests is a GitHub Action that comments on and closes issues labeled as support requests. Supporting the Project. The continued development of...
Read more >
Understanding GitHub Actions
Use an action to help reduce the amount of repetitive code that you write in your workflow files. An action can pull your...
Read more >
Guides for GitHub Actions - GitHub Docs
GitHub Actions guides ... These guides for GitHub Actions include specific use cases and examples to help you configure workflows. Get started with...
Read more >

github_iconTop Related Medium Post

No results found

github_iconTop Related StackOverflow Question

No results found

github_iconTroubleshoot Live Code

Lightrun enables developers to add logs, metrics and snapshots to live code - no restarts or redeploys required.
Start Free

github_iconTop Related Reddit Thread

No results found

github_iconTop Related Hackernoon Post

No results found

github_iconTop Related Tweet

No results found

github_iconTop Related Dev.to Post

No results found

github_iconTop Related Hashnode Post

No results found