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 f6f2305 commit 5e5b919Copy full SHA for 5e5b919
.circleci/config.yml
@@ -8,18 +8,13 @@ jobs:
8
# Checkout repository
9
- checkout
10
11
- # install node
12
- run:
13
- name: Install [email protected]
+ name: "Update Node.js"
14
command: |
15
- ./.circleci/load-nvm.sh
16
- nvm install v11.10.1
17
- nvm alias default v11.10.1
18
-
19
- # will print node: '11.10.1'
20
- - run: |
21
- ./load-nvm.sh
22
- npm version
+ curl -sSL "https://nodejs.org/dist/v11.10.0/node-v11.10.0-linux-x64.tar.xz" | sudo tar --strip-components=2 -xJ -C /usr/local/bin/ node-v11.10.0-linux-x64/bin/node
+ - run:
+ name: Check current version of node
+ command: node -v
23
24
# Restore cache
25
- restore_cache:
.circleci/load-nvm.sh
0 commit comments