From 083177892cd4bdb86f088e2e62b73d302b4f991b Mon Sep 17 00:00:00 2001 From: Jordan Harband Date: Thu, 14 Jan 2021 11:41:14 -0800 Subject: [PATCH] [Tests] pin pnpm to a version that supports node 8 --- .travis.yml | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/.travis.yml b/.travis.yml index 55aa596..cda7d2d 100644 --- a/.travis.yml +++ b/.travis.yml @@ -6,7 +6,7 @@ node_js: cache: yarn before_install: - nvm install-latest-npm - - npm install -g pnpm + - npm install -g pnpm@3 script: - if [ "${LINT-}" = 'true']; then npm run lint; fi - if [ "${TEST-}" = 'true' ]; then npm run tests-only; fi