Skip to content

Commit 31407bc

Browse files
author
Richard Všianský
authored
Merge pull request #13 from data-driven-forms/addCypress
Add cypress
2 parents 0f8b22a + fc3e59c commit 31407bc

File tree

18 files changed

+2032
-201
lines changed

18 files changed

+2032
-201
lines changed

.circleci/config.yml

Lines changed: 16 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -24,6 +24,19 @@ jobs:
2424
root: ~/editor
2525
paths:
2626
- "*"
27+
integration:
28+
docker:
29+
- image: cypress/base:14.16.0
30+
environment:
31+
TERM: xterm
32+
working_directory: ~/editor
33+
steps:
34+
- attach_workspace:
35+
at: ~/editor
36+
- run:
37+
name: reinstall cypress binary
38+
command: npm install cypress
39+
- run: npm run integration:tests
2740
release:
2841
working_directory: ~/editor
2942
docker:
@@ -47,6 +60,9 @@ workflows:
4760
build_and_deploy:
4861
jobs:
4962
- build
63+
- integration:
64+
requires:
65+
- build
5066
- release:
5167
requires:
5268
- build

0 commit comments

Comments
 (0)