File tree Expand file tree Collapse file tree 3 files changed +11
-15
lines changed Expand file tree Collapse file tree 3 files changed +11
-15
lines changed Original file line number Diff line number Diff line change @@ -13,15 +13,15 @@ jobs:
1313    runs-on : ubuntu-latest 
1414    steps :
1515      - name : Checkout Repo 
16-         uses : actions/checkout@master  
16+         uses : actions/checkout@v4  
1717        with :
1818          #  This makes Actions fetch all Git history so that Changesets can generate changelogs with the correct commits
1919          fetch-depth : 0 
2020
21-       - name : Setup Node.js 14 .x 
22-         uses : actions/setup-node@master  
21+       - name : Setup Node.js 22 .x 
22+         uses : actions/setup-node@v4  
2323        with :
24-           node-version : 14 .x
24+           node-version : 22 .x
2525          registry-url : ' https://registry.npmjs.org' 
2626
2727      - name : Get yarn cache directory path 
Original file line number Diff line number Diff line change @@ -12,12 +12,12 @@ jobs:
1212    runs-on : ubuntu-latest 
1313    strategy :
1414      matrix :
15-         node-version : [14 .x, 16 .x] 
15+         node-version : [18 .x, 20.x, 22 .x] 
1616    steps :
17-       - uses : actions/checkout@v2  
17+       - uses : actions/checkout@v4  
1818
1919      - name : Setup Node ${{ matrix.node-version }} 
20-         uses : actions/setup-node@v2  
20+         uses : actions/setup-node@v4  
2121        with :
2222          node-version : ${{ matrix.node-version }} 
2323          cache : ' yarn' 
3131      - name : Lint 
3232        run : yarn lint 
3333
34-       - run : npm config set scripts-prepend-node-path true 
35- 
3634      - name : Test 
3735        run : yarn test 
Original file line number Diff line number Diff line change @@ -16,12 +16,12 @@ jobs:
1616          git config --global core.autocrlf false  
1717          git config --global core.eol lf 
1818
19-        - uses : actions/checkout@v2  
19+        - uses : actions/checkout@v4  
2020
21-       - name : Setup Node 14 .x 
22-         uses : actions/setup-node@v2  
21+       - name : Setup Node 22 .x 
22+         uses : actions/setup-node@v4  
2323        with :
24-           node-version : 14 .x
24+           node-version : 22 .x
2525          cache : ' yarn' 
2626
2727      - name : Install dependencies 
3030      - name : Build 
3131        run : yarn build 
3232
33-       - run : npm config set scripts-prepend-node-path true 
34- 
3533      - name : Test 
3634        run : yarn test 
    
 
   
 
     
   
   
          
     
  
    
     
 
    
      
     
 
     
    You can’t perform that action at this time.
  
 
    
  
     
    
      
        
     
 
       
      
     
   
 
    
    
  
 
  
 
     
    
0 commit comments