source: node_modules/minim/.circleci/config.yml@ c44c5ed

main
Last change on this file since c44c5ed was d24f17c, checked in by Aleksandar Panovski <apano77@…>, 15 months ago

Initial commit

  • Property mode set to 100644
File size: 779 bytes
Line 
1version: 2
2
3defaults: &defaults
4 working_directory: ~/repo
5 docker:
6 - image: circleci/node:10
7 steps:
8 - checkout
9 - run: npm install
10 - run: npm run test
11
12jobs:
13 test-node6:
14 <<: *defaults
15 docker:
16 - image: circleci/node:6
17
18 test-node8:
19 <<: *defaults
20 docker:
21 - image: circleci/node:8
22
23 test-node10:
24 <<: *defaults
25
26 test-browser:
27 <<: *defaults
28 docker:
29 - image: circleci/node:10-browsers
30 steps:
31 - checkout
32 - run: npm install
33 - run: npm run test:browser
34
35 lint:
36 <<: *defaults
37 steps:
38 - checkout
39 - run: npm install
40 - run: npm run lint
41
42workflows:
43 version: 2
44 test:
45 jobs:
46 - lint
47 - test-node6
48 - test-node8
49 - test-node10
50 - test-browser
Note: See TracBrowser for help on using the repository browser.