@bigbinary/neetoui 3.2.74 → 3.2.77

This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
@@ -3,7 +3,7 @@ aliases:
3
3
  - &test_environment
4
4
  docker:
5
5
  # replace with your preferred image
6
- - image: circleci/node:14
6
+ - image: cimg/node:16.13.2
7
7
  jobs:
8
8
  "Snapshot Test":
9
9
  <<: *test_environment
@@ -17,10 +17,16 @@ jobs:
17
17
  <<: *test_environment
18
18
  steps:
19
19
  - checkout
20
+ - restore_cache:
21
+ key: dependency-cache-{{ checksum "yarn.lock" }}
20
22
  - run: yarn install
23
+ - save_cache:
24
+ key: dependency-cache-{{ checksum "yarn.lock" }}
25
+ paths:
26
+ - ./node_modules
21
27
  - run:
22
28
  name: Run Unit Tests
23
- command: yarn test
29
+ command: yarn test --runInBand
24
30
 
25
31
  workflows:
26
32
  neetoui-tests: