-
Notifications
You must be signed in to change notification settings - Fork 7
/
Copy pathconfig.yml
23 lines (23 loc) · 808 Bytes
/
config.yml
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
version: 2.1
orbs:
cypress: cypress-io/[email protected]
workflows:
build:
jobs:
- cypress/run:
# we need to start the web application
start: npm start
# there are no jobs to follow this one
# so no need to save the workspace files (saves time)
no-workspace: true
post-steps:
# store the created coverage report folder
# you can click on it in the CircleCI UI
# to see live static HTML site
- store_artifacts:
path: coverage
# print code coverage summary to the terminal
- run: npm run report:coverage
# send code coverage to coveralls.io
# https://coveralls.io/github/bahmutov/realworld
- run: npm run coveralls