We are using circleci/classic:latest as the machine image on all of the DKAN projects I believe. Within the builds we use a Docker container using a newer version of node. In the Jest tests I already had an nvm process to update the node version to 10 so it would run Jest correctly. It looks like something has updated in the rest of our code that requires more than the node 6 that comes with circleci/classic:latest so when we did the npm install and npm pack outside the DKAN containers the process was failing.
We are using
circleci/classic:latest
as the machine image on all of the DKAN projects I believe. Within the builds we use a Docker container using a newer version of node. In the Jest tests I already had annvm
process to update the node version to 10 so it would run Jest correctly. It looks like something has updated in the rest of our code that requires more than the node 6 that comes withcircleci/classic:latest
so when we did thenpm install
andnpm pack
outside the DKAN containers the process was failing.