Skip to content

Commit 796f293

Browse files
authored
add workflows
1 parent 144d3dd commit 796f293

File tree

1 file changed

+16
-0
lines changed

1 file changed

+16
-0
lines changed

.circleci/config.yml

Lines changed: 16 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -34,3 +34,19 @@ jobs:
3434
- run: sudo npm install -g istanbul codecov
3535
- run: istanbul cover ./node_modules/mocha/bin/_mocha -- -R spec --exit
3636
- run: codecov -t ${CODECOV_TOKEN}
37+
38+
workflows:
39+
version: 2
40+
commit:
41+
jobs:
42+
- build
43+
nightly:
44+
triggers:
45+
- schedule:
46+
cron: "0 0 * * *"
47+
filters:
48+
branches:
49+
only:
50+
- master
51+
jobs:
52+
- build

0 commit comments

Comments
 (0)