@bigbinary/neetoui 3.2.59 → 3.2.62

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,23 @@
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
+ # Orbs are reusable packages of CircleCI configuration that you may share across projects, enabling you to create encapsulated, parameterized commands, jobs, and executors that can be used across multiple projects.
5
+ # See: https://circleci.com/docs/2.0/orb-intro/
6
+ orbs:
7
+ chromatic: wave/chromatic@1.3.0
8
+
9
+ # Invoke jobs via workflows
10
+ # See: https://circleci.com/docs/2.0/configuration-reference/#workflows
11
+ jobs:
12
+ example-job:
13
+ docker:
14
+ # replace with your preferred image
15
+ - image: cimg/base:stable
16
+ steps:
17
+ - chromatic/test-fail-on-changes:
18
+ CHROMATIC_PROJECT_TOKEN: '998dfad0d91f'
19
+
20
+ workflows:
21
+ example-workflow:
22
+ jobs:
23
+ - example-job