Mike McCready

Results 2194 comments of Mike McCready

@sanderdelfos I noticed also that `ubuntu-24.04` does not yet appear on the [Azure Pipelines > Microsoft-hosted agents](https://learn.microsoft.com/en-us/azure/devops/pipelines/agents/hosted) list.

@lucasazevedo01 The version of Node.js `v16.20.2` you are using reached end of life on Sep 11, 2023 and is no longer supported. Are you still experiencing this issue? If yes,...

@ZachHandley - ~~This is similar to issue https://github.com/cypress-io/cypress/issues/27997 where network security may be causing an issue in downloading Cypress.~~ Edit: not relevant. - Note that there is no mention in...

@ZachHandley I can reproduce your error using the Bun Docker image [oven/bun](https://hub.docker.com/r/oven/bun). This is an image based on `linux-x64 (Debian - 11.8)`. Running the following in the Docker container: ```text...

@ZachHandley The Docker image [oven/bun](https://hub.docker.com/r/oven/bun) does not include Node.js and this is required for a successful download of Cypress. The documentation [Installing Cypress > System requirements > Node.js](https://docs.cypress.io/guides/getting-started/installing-cypress#Nodejs) implies this,...

I used [cypress/factory](https://github.com/cypress-io/cypress-docker-images/blob/master/factory/README.md) to build a Docker image and run Cypress using Bun. `Dockerfile` contents: ```text ARG NODE_VERSION='20.11.0' FROM cypress/factory RUN npm install bun --global COPY . /opt/app WORKDIR /opt/app...

@jonnalley > However, in my own mind that seems to give more credence to what I was saying in my prior comment, which is that this is actually a bun...

@ZachHandley > For the record, my Dockerfile is actually not based on `oven/bun` https://github.com/ZachHandley/invoiceninja/blob/v5-stable/Dockerfile I was running the Bun install script and then running those commands from an Ubuntu base...

The [Bun / Node.js compatibility page](https://bun.sh/docs/runtime/nodejs-apis) says: > Bun aims for complete Node.js API compatibility. Most `npm` packages intended for `Node.js` environments will work with Bun out of the box;...

@ZachHandley - I have reported your issue to Bun. See https://github.com/oven-sh/bun/issues/8658.