File tree Expand file tree Collapse file tree 2 files changed +40
-0
lines changed Expand file tree Collapse file tree 2 files changed +40
-0
lines changed Original file line number Diff line number Diff line change
1
+ # Javascript Node CircleCI 2.0 configuration file
2
+ #
3
+ # Check https://circleci.com/docs/2.0/language-javascript/ for more details
4
+ #
5
+
6
+ default-test-config : &default-test-config
7
+ working_directory : ~/repo
8
+ steps :
9
+ - checkout
10
+ - restore_cache :
11
+ key : dependencies-{{ checksum "yarn.lock" }}
12
+ - run : yarn install
13
+ - save_cache :
14
+ paths :
15
+ - node_modules
16
+ key : dependencies-{{ checksum "yarn.lock" }}
17
+ - run : yarn test
18
+
19
+ version : 2
20
+ jobs :
21
+ test-node-8 :
22
+ << : *default-test-config
23
+ docker :
24
+ - image : circleci/node:8.9.4
25
+ test-node-9 :
26
+ << : *default-test-config
27
+ docker :
28
+ - image : circleci/node:9.5.0
29
+
30
+ workflows :
31
+ version : 2
32
+ test :
33
+ jobs :
34
+ - " test-node-8"
35
+ - " test-node-9"
Original file line number Diff line number Diff line change 1
1
# denali-typescript
2
2
3
+ [ ![ CircleCI] ( https://img.shields.io/circleci/project/github/denali-js/denali-typescript.svg?style=flat-square )] ( https://circleci.com/gh/denali-js/denali-typescript )
4
+ [ ![ Dependencies] ( https://img.shields.io/david/denali-js/denali-typescript.svg?style=flat-square )] ( https://david-dm.org/denali-js/denali-typescript )
5
+ [ ![ npm downloads] ( https://img.shields.io/npm/dm/denali-typescript.svg?style=flat-square )] ( https://www.npmjs.com/package/denali-typescript )
6
+ ![ latest version] ( https://img.shields.io/npm/v/denali-typescript.svg?style=flat-square )
7
+
3
8
Build your Denali app using Typescript! Just ` $ denali install denali-typescript `
4
9
and you're good to go!
5
10
You can’t perform that action at this time.
0 commit comments