From 07f9551ca05fde414d784d886287a53e806abcb2 Mon Sep 17 00:00:00 2001 From: Alex Forsyth Date: Tue, 10 Nov 2020 16:43:07 -0500 Subject: [PATCH] fix: use n notation for aws codebuild --- buildspec.yml | 5 ++--- 1 file changed, 2 insertions(+), 3 deletions(-) diff --git a/buildspec.yml b/buildspec.yml index 60387412a3685..6e704c87df5b1 100644 --- a/buildspec.yml +++ b/buildspec.yml @@ -1,18 +1,17 @@ version: 0.2 phases: - install: - runtime-versions: - nodejs: 10 build: commands: # Fake credentials for protocol tests to get past signing. - export AWS_ACCESS_KEY_ID=foo - export AWS_SECRET_ACCESS_KEY=bar + - n 10 - echo Building... - yarn --frozen-lockfile # Run the actual tests. - echo Executing unit tests + - nvm use - yarn test:all - echo Executing functional test - yarn test:functional