File tree Expand file tree Collapse file tree 4 files changed +2406
-2411
lines changed Expand file tree Collapse file tree 4 files changed +2406
-2411
lines changed Original file line number Diff line number Diff line change 1+ name : Continuous Integration 
2+ 
3+ on :
4+   push :
5+   pull_request :
6+ 
7+ jobs :
8+   test :
9+     name : Test 
10+     runs-on : ubuntu-latest 
11+     strategy :
12+       matrix :
13+         node-version : [12.x, 14.x, 16.x] 
14+     steps :
15+     - uses : actions/checkout@v2 
16+     - name : Use Node.js ${{ matrix.node-version }} 
17+       uses : actions/setup-node@v2 
18+       with :
19+         node-version : ${{ matrix.node-version }} 
20+         cache : ' yarn' 
21+     - run : yarn install 
22+     - run : yarn test 
23+ 
24+   test-floating :
25+     name : Floating Dependencies 
26+     runs-on : ubuntu-latest 
27+     strategy :
28+       matrix :
29+         node-version : [12.x, 14.x, 16.x] 
30+     steps :
31+     - uses : actions/checkout@v2 
32+     - name : Use Node.js ${{ matrix.node-version }} 
33+       uses : actions/setup-node@v2 
34+       with :
35+         node-version : ${{ matrix.node-version }} 
36+         cache : ' yarn' 
37+     - name : install dependencies 
38+       run : yarn install --no-lockfile 
39+     - name : test 
40+       run : yarn test 
Load Diff This file was deleted. 
Original file line number Diff line number Diff line change 3535    "release-it-lerna-changelog" : " ^2.3.0" 
3636  },
3737  "engines" : {
38-     "node" : " >= 10 " 
38+     "node" : " 12.* || 14.* ||  >= 16 " 
3939  },
4040  "publishConfig" : {
4141    "registry" : " https://registry.npmjs.org" 
 
 
   
 
     
   
   
          
    
    
     
    
      
     
     
    You can’t perform that action at this time.
  
 
    
  
    
      
        
     
       
      
     
   
 
    
    
  
 
  
 
     
    
0 commit comments