Skip to content
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.

Commit bbbb19d

Browse files
committedJun 28, 2020
feat: first commit
0 parents  commit bbbb19d

File tree

137 files changed

+28517
-0
lines changed

Some content is hidden

Large Commits have some content hidden by default. Use the searchbox below for content that may be hidden.

137 files changed

+28517
-0
lines changed
 

‎.circleci/config.yml

Lines changed: 54 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,54 @@
1+
version: 2.1
2+
orbs:
3+
codecov: codecov/codecov@1
4+
executors:
5+
node:
6+
docker:
7+
- image: circleci/node:14.3
8+
jobs:
9+
build:
10+
executor: node
11+
steps:
12+
- checkout
13+
- restore_cache:
14+
keys:
15+
- v1-dependencies-{{ checksum "package.json" }}-{{ checksum "package-lock.json" }}
16+
# fallback to using the latest cache if no exact match is found
17+
- v1-dependencies-
18+
- run: npm ci
19+
- save_cache:
20+
paths:
21+
- ~/.npm
22+
key: v1-dependencies-{{ checksum "package.json" }}-{{ checksum "package-lock.json" }}
23+
- run: npm run build
24+
- run: npm run test:prod
25+
- codecov/upload
26+
- store_test_results:
27+
path: test-results
28+
- store_artifacts:
29+
path: test-results
30+
publish:
31+
executor: node
32+
steps:
33+
- checkout
34+
- restore_cache:
35+
keys:
36+
- v1-dependencies-{{ checksum "package.json" }}-{{ checksum "package-lock.json" }}
37+
# fallback to using the latest cache if no exact match is found
38+
- v1-dependencies-
39+
- run: npm ci
40+
- run: npm run build
41+
- run: npm run semantic-release
42+
workflows:
43+
version: 2
44+
build-and-publish:
45+
jobs:
46+
- build
47+
- publish:
48+
context: hypertrace-publishing
49+
requires:
50+
- build
51+
filters:
52+
branches:
53+
only:
54+
- master

‎.editorconfig

Lines changed: 13 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,13 @@
1+
#root = true
2+
3+
[*]
4+
indent_style = space
5+
end_of_line = lf
6+
charset = utf-8
7+
trim_trailing_whitespace = true
8+
insert_final_newline = true
9+
max_line_length = 100
10+
indent_size = 2
11+
12+
[*.md]
13+
trim_trailing_whitespace = false

0 commit comments

Comments
 (0)
Please sign in to comment.