Skip to content

Commit 3b772d1

Browse files
committed
feat(circle-ci and renovate): added circleci config and renovate
1 parent 2057458 commit 3b772d1

File tree

7 files changed

+7222
-5
lines changed

7 files changed

+7222
-5
lines changed

.circleci/config.yml

Lines changed: 29 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,29 @@
1+
version: 2
2+
machine:
3+
services:
4+
- docker
5+
6+
jobs:
7+
build:
8+
docker:
9+
- image: circleci/node:8.15
10+
environment:
11+
- NPM_CONFIG_LOGLEVEL: warn
12+
working_directory: ~/repo
13+
steps:
14+
- checkout
15+
- setup_remote_docker:
16+
docker_layer_caching: true
17+
- restore_cache:
18+
keys:
19+
- v1-dependencies-{{ checksum "package-lock.json" }}
20+
- run:
21+
name: installing Dependencies
22+
command: npm install
23+
- save_cache:
24+
paths:
25+
- node_modules
26+
key: v1-dependencies-{{ checksum "package-lock.json" }}
27+
- deploy:
28+
name: semantic Release
29+
command: npm run semantic-release

README.md

Lines changed: 8 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1 +1,8 @@
1-
# tscommons
1+
# tscommons
2+
3+
All you need to start your typescript project:
4+
- tsconfig.json
5+
- tslint.json
6+
7+
Credits:
8+
[https://github.com/ryansmith94](ryansmith94)
File renamed without changes.
File renamed without changes.

0 commit comments

Comments
 (0)