forked from TroyAlford/react-jsx-parser
-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathcircle.yml
More file actions
37 lines (33 loc) · 832 Bytes
/
circle.yml
File metadata and controls
37 lines (33 loc) · 832 Bytes
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
## Customize the test machine
database:
override:
- echo "Skipping DB config"
## Customize dependencies
dependencies:
cache_directories:
- ~/.cache/yarn
override:
- yarn --ignore-engines
machine:
environment:
PATH: "${PATH}:${HOME}/${CIRCLE_PROJECT_REPONAME}/node_modules/.bin"
node:
version: 6
timezone:
America/Los_Angeles # Set the timezone
## Customize test commands
test:
override:
# first, run all tests
- yarn test
# then, attempt a build
- yarn build
# deployment:
# npm:
# branch: master
# commands:
# # login using environment variables
# - echo -e "$NPM_USERNAME\n$NPM_PASSWORD\n$NPM_EMAIL" | npm login
# - echo -e "git config --global user.email \""
# - npm version patch -m "Version bump for NPM release"
# - npm publish