Skip to content

Common CI Troubleshooting

Valentin D. Pinkman edited this page Dec 26, 2023 · 3 revisions

Here you will find a collection of common and less common error showing up in CI, as well as some ideas on how to fix them.

Node Action Cache Error (DEPRECATED: we now use our own s3 for cache)

CleanShot 2022-07-12 at 11 27 46@2x

This might happen sometimes, it is usually not related to our runners, nor is it something that we broke ourselves (or at least it shouldn't be). The most probable case is, there is an issue with the cache action.

Possible solution

Temporarily deactivate the pnpm cache in node-setup action (which is a pain because it's present on almost all workflows). It might also be present in ./tools/actions/composites/**.

From:

- uses: actions/setup-node@v3
  with:
    node-version: 16.x
    cache: pnpm
    cache-dependency-path: "**/pnpm-lock.yaml"

To:

- uses: actions/setup-node@v3
  with:
    node-version: 16.x
    # cache: pnpm
    # cache-dependency-path: "**/pnpm-lock.yaml"
Clone this wiki locally