Github action get stuck for 10 minutes
See original GitHub issueHi there!
Chromatic step get stuck for 10 minutes. I think 10 minutes is the timeout.
I tried options exitOnceUploaded: true | "true"
& exitZeroOnChanges
but nothing, build always during 10 minutes. Apparently this step only takes 30 secondes. Did I missed something ?
Here is my Github workflow file :
name: Chromatic
on: push
jobs:
chromatic-deployment:
name: Install & Check stories
runs-on: ubuntu-latest
steps:
- name: Checkout repository
uses: actions/checkout@v2
with:
fetch-depth: 0 # 👈 Required to retrieve git history
- name: Cache node modules
uses: actions/cache@v2
env:
cache-name: cache-node-modules
with:
# npm cache files are stored in `~/.npm` on Linux/macOS
path: ~/.npm
key: npm-${{ hashFiles('**/package-lock.json') }}
restore-keys: |
npm-
- name: Install dependencies
run: npm i
- name: Publish to Chromatic
uses: chromaui/action@v1
with:
token: ${{ secrets.GITHUB_TOKEN }}
projectToken: ${{ secrets.CHROMATIC_PROJECT_TOKEN }}
exitOnceUploaded: "true"
Issue Analytics
- State:
- Created 3 years ago
- Reactions:3
- Comments:7 (2 by maintainers)
Top Results From Across the Web
Github Actions Stuck for 10's of minutes · Discussion #26713
All the old 'actions are stuck' posts are multiple months old. I don't know what's happening with this job or why the action...
Read more >Github action stuck at queue · Discussion #26693
I have a workflow that stuck at Queue state for a long time. I can't even cancel the flow. Re-commit also did not...
Read more >GitHub Actions step is hanging until timeout · Issue #1326
Describe the bug At some point, a GitHub Actions step stops producing output and hangs until the workflow is terminated by timeout.
Read more >An action stuck in progress in UI. I see it finished ...
I see it finished succesfully in logs. Deploy [dev] the time display of 34 mins is wrong. By log it took 2-3 minutes,...
Read more >Actions gets stuck when starting a step #571
Running a workflow on Github's servers on 2 repositories gets stuck before the directive gets run. It will run for a few hours...
Read more >Top Related Medium Post
No results found
Top Related StackOverflow Question
No results found
Troubleshoot Live Code
Lightrun enables developers to add logs, metrics and snapshots to live code - no restarts or redeploys required.
Start FreeTop Related Reddit Thread
No results found
Top Related Hackernoon Post
No results found
Top Related Tweet
No results found
Top Related Dev.to Post
No results found
Top Related Hashnode Post
No results found
Top GitHub Comments
Thanks all, we’ll investigate!
I’ve released a patch version on npm which should resolve this issue.