GithubHelp home page GithubHelp logo

Comments (3)

jono-pov avatar jono-pov commented on May 28, 2024

The weird part is, the failure happens after the tasks where corepack is doing its thing.

This is my pipeline script:

pool:
  vmImage: ubuntu-latest

variables:
  pnpm_config_cache: $(Pipeline.Workspace)/.pnpm-store

steps:
  - task: UseNode@1
    inputs:
      version: "20.x"
    displayName: "Install Node.js"

  - task: Cache@2
    inputs:
      key: 'pnpm | "$(Agent.OS)" | ./src/ui/pnpm-lock.yaml'
      path: $(pnpm_config_cache)
    displayName: Cache pnpm

  - script: |
      corepack enable
      corepack prepare pnpm@latest-8 --activate
    displayName: "Setup pnpm"

  - script: pnpm config set store-dir $(pnpm_config_cache)
    displayName: "Setup pnpm caching"

  - script: |
      cd src/ui
      pnpm install
    displayName: "Install PNPM packages"

  - script: |
      node -v
      pnpm -v
      cd src/ui
      pnpm fastbuild
    displayName: "Build UI"

The "setup pnpm" step runs perfectly. The failure happens during the "build UI" step.

from corepack.

jono-pov avatar jono-pov commented on May 28, 2024

Prior issues with this error (e.g. #394, #450) have been the result of using an older version of Node. However I'm running v20.12.2 and have tried v22 as well - the error happens either way.

I may be wrong about this. As an experiment, I removed Corepack from the equation. After doing that, PNPM started giving me an error that I was only using node v16, despite explicitly installing v20 earlier in the pipeline.

Once I find a solution to that problem I'll update this issue.

from corepack.

jono-pov avatar jono-pov commented on May 28, 2024

Yep, never mind, it was a problem with my own setup using a different node version.

from corepack.

Related Issues (20)

Recommend Projects

  • React photo React

    A declarative, efficient, and flexible JavaScript library for building user interfaces.

  • Vue.js photo Vue.js

    🖖 Vue.js is a progressive, incrementally-adoptable JavaScript framework for building UI on the web.

  • Typescript photo Typescript

    TypeScript is a superset of JavaScript that compiles to clean JavaScript output.

  • TensorFlow photo TensorFlow

    An Open Source Machine Learning Framework for Everyone

  • Django photo Django

    The Web framework for perfectionists with deadlines.

  • D3 photo D3

    Bring data to life with SVG, Canvas and HTML. 📊📈🎉

Recommend Topics

  • javascript

    JavaScript (JS) is a lightweight interpreted programming language with first-class functions.

  • web

    Some thing interesting about web. New door for the world.

  • server

    A server is a program made to process requests and deliver data to clients.

  • Machine learning

    Machine learning is a way of modeling and interpreting data that allows a piece of software to respond intelligently.

  • Game

    Some thing interesting about game, make everyone happy.

Recommend Org

  • Facebook photo Facebook

    We are working to build community through open source technology. NB: members must have two-factor auth.

  • Microsoft photo Microsoft

    Open source projects and samples from Microsoft.

  • Google photo Google

    Google ❤️ Open Source for everyone.

  • D3 photo D3

    Data-Driven Documents codes.