chore: use node 12 everywhere (#2081)

This commit is contained in:
Nolan Lawson 2021-07-29 07:25:40 -07:00 committed by GitHub
parent da4d32c1e7
commit 32b1be96a9
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23
2 changed files with 3 additions and 3 deletions

View File

@ -63,8 +63,8 @@ commands:
name: "Install Node.js"
# via https://circleci.com/docs/2.0/circleci-images/#notes-on-pinning-images
command: |
curl -sSL "https://nodejs.org/dist/v12.22.2/node-v12.22.2-linux-x64.tar.xz" \
| sudo tar --strip-components=2 -xJ -C /usr/local/bin/ node-v12.22.2-linux-x64/bin/node
curl -sSL "https://nodejs.org/dist/v12.22.3/node-v12.22.3-linux-x64.tar.xz" \
| sudo tar --strip-components=2 -xJ -C /usr/local/bin/ node-v12.22.3-linux-x64/bin/node
- run:
name: Check current version of node
command: node -v

View File

@ -195,7 +195,7 @@
"*.html": "standard --fix --plugin html 'src/routes/**/*.html'"
},
"volta": {
"node": "14.17.3",
"node": "12.22.3",
"yarn": "1.22.11"
}
}