We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 5a8e2ad commit 23d48f7Copy full SHA for 23d48f7
1 file changed
.circleci/config.yml
@@ -7,7 +7,9 @@
7
version: 2
8
jobs:
9
build:
10
- machine: true
+ machine:
11
+ # pin image to older version as "ubuntu-2204:2023.10.1" breaks on "nvm" step
12
+ image: ubuntu-2204:2023.04.2
13
environment:
14
DEPLOY_PACKAGES: 1
15
DEB: bionic focal
@@ -30,9 +32,8 @@ jobs:
30
32
- run:
31
33
name: Switch to supported version of Node
34
command: |
- whereis nvm
35
+ set +e
36
export NVM_DIR="/opt/circleci/.nvm"
- ls $NVM_DIR
37
[ -s "$NVM_DIR/nvm.sh" ] && . "$NVM_DIR/nvm.sh"
38
nvm install 14.20.1
39
nvm alias default v14.20.1
0 commit comments