diff options
author | Thibaut Girka <thib@sitedethib.com> | 2019-11-07 12:47:41 +0100 |
---|---|---|
committer | Thibaut Girka <thib@sitedethib.com> | 2019-11-07 13:27:36 +0100 |
commit | f63dad52943c757489975e0c39e771b6bc96e5ba (patch) | |
tree | 0d3596a944cd4ddc27c8c3989f039f640730f70c | |
parent | 42dff261d67b7381b641e8b8d21eb63e6d11fb6d (diff) |
Change CircleCI config to build assets with NODE_ENV=test
This should avoid minimization and other expensive webpack transformations which aren't useful for running tests.
-rw-r--r-- | .circleci/config.yml | 1 |
1 files changed, 1 insertions, 0 deletions
diff --git a/.circleci/config.yml b/.circleci/config.yml index 2efa31e64..796d6cf6e 100644 --- a/.circleci/config.yml +++ b/.circleci/config.yml @@ -9,6 +9,7 @@ aliases: DB_HOST: localhost DB_USER: root RAILS_ENV: test + NODE_ENV: test PARALLEL_TEST_PROCESSORS: 4 ALLOW_NOPAM: true CONTINUOUS_INTEGRATION: true |