|
1 | 1 | version: 2.1 |
2 | 2 | orbs: |
3 | | - |
| 3 | + |
4 | 4 | jobs: |
5 | | - test-v8: |
6 | | - docker: |
7 | | - - image: circleci/node:8 |
8 | | - steps: |
9 | | - - checkout |
10 | | - - run: |
11 | | - name: Run build |
12 | | - command: npm install |
13 | | - - run: |
14 | | - name: Run test |
15 | | - command: npm run test |
16 | | - - run: |
17 | | - name: Verify build and test |
18 | | - command: echo "Build and test completed successfully!" |
19 | | - test-v10: |
20 | | - docker: |
21 | | - - image: cimg/base:stable |
22 | | - steps: |
23 | | - - checkout |
24 | | - - node/install: |
25 | | - node-version: "10.24" |
26 | | - - run: |
27 | | - name: Run build |
28 | | - command: npm install |
29 | | - - run: |
30 | | - name: Run test |
31 | | - command: npm run test |
32 | | - - run: |
33 | | - name: Verify build and test |
34 | | - command: echo "Build and test completed successfully!" |
35 | | - test-v12: |
36 | | - docker: |
37 | | - - image: cimg/base:stable |
38 | | - steps: |
39 | | - - checkout |
40 | | - - node/install: |
41 | | - node-version: "12.22" |
42 | | - - run: |
43 | | - name: Run build |
44 | | - command: npm install |
45 | | - - run: |
46 | | - name: Run test |
47 | | - command: npm run test |
48 | | - - run: |
49 | | - name: Verify build and test |
50 | | - command: echo "Build and test completed successfully!" |
51 | | - test-v14: |
52 | | - docker: |
53 | | - - image: cimg/base:stable |
54 | | - steps: |
55 | | - - checkout |
56 | | - - node/install: |
57 | | - node-version: "14.21" |
58 | | - - run: |
59 | | - name: Run build |
60 | | - command: npm install |
61 | | - - run: |
62 | | - name: Run test |
63 | | - command: npm run test |
64 | | - - run: |
65 | | - name: Verify build and test |
66 | | - command: echo "Build and test completed successfully!" |
67 | | - test-v16: |
68 | | - docker: |
69 | | - - image: cimg/base:stable |
70 | | - steps: |
71 | | - - checkout |
72 | | - - node/install: |
73 | | - node-version: "16.20" |
74 | | - - run: |
75 | | - name: Run build |
76 | | - command: npm install |
77 | | - - run: |
78 | | - name: Run test |
79 | | - command: npm run test |
80 | | - - run: |
81 | | - name: Verify build and test |
82 | | - command: echo "Build and test completed successfully!" |
83 | | - test-v18: |
84 | | - docker: |
85 | | - - image: cimg/base:stable |
86 | | - steps: |
87 | | - - checkout |
88 | | - - node/install: |
89 | | - node-version: "18.20" |
90 | | - - run: |
91 | | - name: Run build |
92 | | - command: npm install |
93 | | - - run: |
94 | | - name: Run test |
95 | | - command: npm run test |
96 | | - - run: |
97 | | - name: Verify build and test |
98 | | - command: echo "Build and test completed successfully!" |
99 | | - test-v20: |
100 | | - docker: |
101 | | - - image: cimg/base:stable |
102 | | - steps: |
103 | | - - checkout |
104 | | - - node/install: |
105 | | - node-version: "20.18" |
106 | | - - run: |
107 | | - name: Run build |
108 | | - command: npm install |
109 | | - - run: |
110 | | - name: Run test |
111 | | - command: npm run test |
112 | | - - run: |
113 | | - name: Verify build and test |
114 | | - command: echo "Build and test completed successfully!" |
115 | | - test-v22: |
116 | | - docker: |
117 | | - - image: cimg/base:stable |
118 | | - steps: |
119 | | - - checkout |
120 | | - - node/install: |
121 | | - node-version: "22.12" |
122 | | - - run: |
123 | | - name: Run build |
124 | | - command: npm install |
125 | | - - run: |
126 | | - name: Run test |
127 | | - command: npm run test |
128 | | - - run: |
129 | | - name: Verify build and test |
130 | | - command: echo "Build and test completed successfully!" |
| 5 | + test-v8: |
| 6 | + docker: |
| 7 | + - image: circleci/node:8 |
| 8 | + steps: |
| 9 | + - checkout |
| 10 | + - run: |
| 11 | + name: Run build |
| 12 | + command: npm install |
| 13 | + - run: |
| 14 | + name: Run test |
| 15 | + command: npm run test |
| 16 | + - run: |
| 17 | + name: Verify build and test |
| 18 | + command: echo "Build and test completed successfully!" |
| 19 | + test-v10: |
| 20 | + docker: |
| 21 | + - image: cimg/base:stable |
| 22 | + steps: |
| 23 | + - checkout |
| 24 | + - node/install: |
| 25 | + node-version: '10.24' |
| 26 | + - run: |
| 27 | + name: Run build |
| 28 | + command: npm install |
| 29 | + - run: |
| 30 | + name: Run test |
| 31 | + command: npm run test |
| 32 | + - run: |
| 33 | + name: Verify build and test |
| 34 | + command: echo "Build and test completed successfully!" |
| 35 | + test-v12: |
| 36 | + docker: |
| 37 | + - image: cimg/base:stable |
| 38 | + steps: |
| 39 | + - checkout |
| 40 | + - node/install: |
| 41 | + node-version: '12.22' |
| 42 | + - run: |
| 43 | + name: Run build |
| 44 | + command: npm install |
| 45 | + - run: |
| 46 | + name: Run test |
| 47 | + command: npm run test |
| 48 | + - run: |
| 49 | + name: Verify build and test |
| 50 | + command: echo "Build and test completed successfully!" |
| 51 | + test-v14: |
| 52 | + docker: |
| 53 | + - image: cimg/base:stable |
| 54 | + steps: |
| 55 | + - checkout |
| 56 | + - node/install: |
| 57 | + node-version: '14.21' |
| 58 | + - run: |
| 59 | + name: Run build |
| 60 | + command: npm install |
| 61 | + - run: |
| 62 | + name: Run test |
| 63 | + command: npm run test |
| 64 | + - run: |
| 65 | + name: Verify build and test |
| 66 | + command: echo "Build and test completed successfully!" |
| 67 | + test-v16: |
| 68 | + docker: |
| 69 | + - image: cimg/base:stable |
| 70 | + steps: |
| 71 | + - checkout |
| 72 | + - node/install: |
| 73 | + node-version: '16.20' |
| 74 | + - run: |
| 75 | + name: Run build |
| 76 | + command: npm install |
| 77 | + - run: |
| 78 | + name: Run test |
| 79 | + command: npm run test |
| 80 | + - run: |
| 81 | + name: Verify build and test |
| 82 | + command: echo "Build and test completed successfully!" |
| 83 | + test-v18: |
| 84 | + docker: |
| 85 | + - image: cimg/base:stable |
| 86 | + steps: |
| 87 | + - checkout |
| 88 | + - node/install: |
| 89 | + node-version: '18.20' |
| 90 | + - run: |
| 91 | + name: Run build |
| 92 | + command: npm install |
| 93 | + - run: |
| 94 | + name: Run test |
| 95 | + command: npm run test |
| 96 | + - run: |
| 97 | + name: Verify build and test |
| 98 | + command: echo "Build and test completed successfully!" |
| 99 | + test-v20: |
| 100 | + docker: |
| 101 | + - image: cimg/base:stable |
| 102 | + steps: |
| 103 | + - checkout |
| 104 | + - node/install: |
| 105 | + node-version: '20.19' |
| 106 | + - run: |
| 107 | + name: Run build |
| 108 | + command: npm install |
| 109 | + - run: |
| 110 | + name: Run test |
| 111 | + command: npm run test |
| 112 | + - run: |
| 113 | + name: Verify build and test |
| 114 | + command: echo "Build and test completed successfully!" |
| 115 | + test-v22: |
| 116 | + docker: |
| 117 | + - image: cimg/base:stable |
| 118 | + steps: |
| 119 | + - checkout |
| 120 | + - node/install: |
| 121 | + node-version: '22.17' |
| 122 | + - run: |
| 123 | + name: Run build |
| 124 | + command: npm install |
| 125 | + - run: |
| 126 | + name: Run test |
| 127 | + command: npm run test |
| 128 | + - run: |
| 129 | + name: Verify build and test |
| 130 | + command: echo "Build and test completed successfully!" |
| 131 | + test-v24: |
| 132 | + docker: |
| 133 | + - image: cimg/base:stable |
| 134 | + steps: |
| 135 | + - checkout |
| 136 | + - node/install: |
| 137 | + node-version: '24.3' |
| 138 | + - run: |
| 139 | + name: Run build |
| 140 | + command: npm install |
| 141 | + - run: |
| 142 | + name: Run tests |
| 143 | + command: npm run test |
| 144 | + - run: |
| 145 | + name: Verify build |
| 146 | + command: echo "Build and Test completed successfully!" |
131 | 147 | workflows: |
132 | | - build_and_test: |
133 | | - jobs: |
134 | | - - test-v16 |
135 | | - - test-v18 |
136 | | - - test-v20 |
137 | | - - test-v22 |
| 148 | + build: |
| 149 | + jobs: |
| 150 | + - test-v16 |
| 151 | + - test-v18 |
| 152 | + - test-v20 |
| 153 | + - test-v22 |
0 commit comments