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.

Github action get stuck for 10 minutes

See original GitHub issue

Hi 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 ?

Capture d’écran 2021-02-05 à 17 00 34

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:closed
  • Created 3 years ago
  • Reactions:3
  • Comments:7 (2 by maintainers)

github_iconTop GitHub Comments

3reactions
tmeasdaycommented, Feb 10, 2021

Thanks all, we’ll investigate!

2reactions
ndelangencommented, Feb 10, 2021

I’ve released a patch version on npm which should resolve this issue.

Read more comments on GitHub >

github_iconTop 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 >

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