From 665a15c44a87e9ca95b6c4440da4fdb6a6bc6234 Mon Sep 17 00:00:00 2001 From: pngwn Date: Wed, 27 Apr 2022 02:05:50 +0100 Subject: [PATCH] tweak node circleci settings (#1091) * tweak node circleci settings * tweak node circleci settings * update node orb to latest --- .circleci/config.yml | 9 +++++---- 1 file changed, 5 insertions(+), 4 deletions(-) diff --git a/.circleci/config.yml b/.circleci/config.yml index 0ef8f7ec9b..1e3b8044b9 100644 --- a/.circleci/config.yml +++ b/.circleci/config.yml @@ -1,9 +1,11 @@ version: 2.1 orbs: codecov: codecov/codecov@3.2.2 - node: circleci/node@4.7.0 + node: circleci/node@5.0.2 jobs: build: + environment: + NODE_OPTIONS: --max-old-space-size=4096 docker: - image: circleci/python:3.9.2-browsers steps: @@ -31,8 +33,7 @@ jobs: paths: - "venv" - node/install: - node-version: 14.17.4 - npm-version: 8.1.0 + node-version: "16" - run: name: Build frontend command: | @@ -61,7 +62,7 @@ jobs: coverage run -m pytest coverage xml - codecov/upload: - file: 'coverage.xml' + file: "coverage.xml" - store_artifacts: path: /home/circleci/project/test/tmp destination: screenshots