File tree Expand file tree Collapse file tree 1 file changed +36
-0
lines changed Expand file tree Collapse file tree 1 file changed +36
-0
lines changed Original file line number Diff line number Diff line change 1+ version : 2.1
2+ orbs :
3+ node : circleci/node@1.1.6
4+ jobs :
5+ extension :
6+ description : ' Unit tests for Node app'
7+ executor :
8+ name : node/default
9+ steps :
10+ - checkout
11+ - node/with-cache :
12+ steps :
13+ - run : npm install
14+ - run : npm test
15+ # web:
16+ # description: 'Frontend tests for Web app'
17+ # executor:
18+ # name: node/default
19+ # environment:
20+ # SKIP_PREFLIGHT_CHECK: true
21+ # REACT_APP_TUTORIAL_LIST_URL: https://raw.githubusercontent.com/coderoad/tutorials/master/tutorials.json
22+ # working_directory: ~/web-app
23+ # steps:
24+ # - checkout
25+ # - node/with-cache:
26+ # steps:
27+ # - run: cd web-app && npm install
28+ # - run: cd web-app && npm test
29+
30+ workflows :
31+ build-and-test :
32+ jobs :
33+ - extension
34+ # - web
35+ # - e2e
36+ # - package
You can’t perform that action at this time.
0 commit comments