Skip to main content
Filter by
Sorted by
Tagged with
2 votes
3 answers
5k views

On my github action, it logged the following: The full lint text report is located at: /home/runner/work/honk/honk/app/build/intermediates/lint_intermediate_text_report/debug/lint-results-debug.txt ...
0 votes
1 answer
164 views

I do not understand, how to collect all of the output from previous step that implemented as uses to public it as a PR comment in the next step of the workflow. There are many answers about collecting ...
0 votes
1 answer
1k views

Out of the blue, I cannot see the logs for my github action workflow job steps, I was able to view these before but today without any changes, I can't expand and see the logs for the steps of a job. ...
3 votes
2 answers
2k views

My GitHub CI was failing with a xcodebuild when I included a swift package that contains some macros. The build with xcodebuild was simply telling me xcodebuild: error: Failed writing xctestrun file: ...
1 vote
0 answers
258 views

Context: I'm dipping my toe into GitHub's lovely CI/CD facility and having a bit of difficulty. https://github.com/rdpoor/basic-cicd is a super-simple repo designed to run unit tests and coverage ...
5 votes
1 answer
1k views

At the moment I'm trying to setup a solution with a implementations class library and an abstractions project. I want to have both packages on nuget.org. Normally when you're just using ...
0 votes
1 answer
200 views

I am trying to understand how running lighthouse as CI helps me. What I understood is on every PR lighthouse will run on my application that runs on a localhost. But my end users are using the prod ...
0 votes
0 answers
167 views

I've created 2 workflows, one is caller workflow A in repository A and other is called workflow B in repository B. Both the repositories are part of Github Org OrgName. Workflow B in repository B is ...
0 votes
1 answer
567 views

I am trying to set up github CI workflow to do my springboot application tests. However the test are failing on database connection, even though locally it works fine. The CI job is as follow build: ...
1 vote
1 answer
1k views

I am trying to incrementally test changes to an ansible playbook using a GitHub workflow and I don't understand differences between the GitHub execution and my local execution. In particular, I cannot ...
4 votes
1 answer
8k views

I have a private GitHub repository named "Test Repo" under an organization. The repository has an action that performs a workflow and uploads an artifact (HTML). I have ten more private ...
0 votes
1 answer
363 views

I am using PyGithub to run tests on every pull request in a repository. I'd like to only run tests on pull requests that have passed my CI. Is there a way to query the results of the CI in Python? For ...
1 vote
1 answer
821 views

I have the following Github CI name: Node.js CI on: push: branches: [ main ] pull_request: branches: [ main ] jobs: build: strategy: matrix: platform: [ubuntu-latest, ...
1 vote
0 answers
252 views

I am running my UI Tests on Github CI and the tests are flaky. I don't understand how I can fix it. The animations are disabled and I am running the tests on a iPhone 13 plus. A lot of tests are ...
3 votes
1 answer
1k views

I integrated travis in to my project where i used postgres but when i tried to test i got stuck in with an unkwown error i.e $ python manage.py test Traceback (most recent call last): File "manage....
0 votes
0 answers
1k views

I am struggling with the following Problem. I need to get the last commit that changed a file. In my local repository everything works fine, but in my github actions merge pipeline it seems as if ...
1 vote
1 answer
1k views

Is there a way to use the github-cli or api to view the inputs of an action while it is running? I want to allow Github actions to run concurrently. The resources they will manage are determined by ...
0 votes
0 answers
1k views

I have a CI setup in Github which runs all the tests I currently have (200 approx) which are e2e tests using jest and superagent, following NestJS's standard testing pattern, also meaning that I have ...
3 votes
1 answer
2k views

I have been battling GitHub actions for a while now. I had to switch to GitHub Action after using Travis for a while and cannot set it up to run tests for Rails application. The problem is that no ...
1 vote
2 answers
3k views

I have a C++ project on GitHub with which I use GitHub CI. My workflow is configured to run on Linux and Windows through the strategy property: runs-on: ${{ matrix.os }} strategy: matrix: os: [...
27 votes
1 answer
31k views

I uploaded a maven artefact to the GitHub Package Registry (Beta) and want to add it as maven dependency. I'm already in the Regestry-Beta and activated it for my sample HalloMaven project. Also the ...
1 vote
0 answers
410 views

Is there some sort of trick to building and running a Docker image from Github-CI? I've gone through their documentation but I can't find anything that applies to my use case. Because I want to ...
1 vote
1 answer
658 views

I've set a GitHub action that make a build of my React application. I need that build to be pushed to another repo that I'm using to keep track of the builds. This is the action that is actually ...
1 vote
0 answers
747 views

I have been trying to set up a container workflow in my github project so that it is triggered by every push to to repo and. It must build the container image from the default Dockerfile and push the ...
0 votes
1 answer
306 views

Locally, running tsc or tsc -w in parallel to npm t -- --watch all work, but trying to replicate what I have into Github CI hasn't been working. For some reason I'm not even able to print the folders ...