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