@bigbinary/neetoui 3.2.60 → 3.2.63

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.
@@ -0,0 +1,17 @@
1
+ # This config is equivalent to both the '.circleci/extended/orb-free.yml' and the base '.circleci/config.yml'
2
+ version: 2.1
3
+
4
+ jobs:
5
+ Snapshot-test:
6
+ docker:
7
+ # replace with your preferred image
8
+ - image: circleci/node:12
9
+ steps:
10
+ - checkout
11
+ - run: yarn install
12
+ - run: yarn chromatic test --exit-zero-on-changes --project-token $CHROMATIC_PROJECT_TOKEN
13
+
14
+ workflows:
15
+ chromatic-snapshot-test:
16
+ jobs:
17
+ - Snapshot-test