File tree Expand file tree Collapse file tree 2 files changed +7
-3
lines changed
Expand file tree Collapse file tree 2 files changed +7
-3
lines changed Original file line number Diff line number Diff line change @@ -4,13 +4,17 @@ on: [pull_request]
44jobs :
55 test :
66 runs-on : ubuntu-latest
7+ strategy :
8+ matrix :
9+ node : [16, 18, 20]
10+ name : Testing on Node ${{ matrix.node }}
711 steps :
812 - name : ' 🚚 Checkout'
913 uses : actions/checkout@v3
1014 - name : ' 🔧 Setup Node'
1115 uses : actions/setup-node@v3
1216 with :
13- node-version : ' 16 '
17+ node-version : ${{ matrix.node }}
1418 - name : ' 📦️ Install dependencies'
1519 run : yarn
1620 - name : ' 🧪 Run Unit tests'
2933 uses : ./
3034 with :
3135 path : tests/ci/berry-v3/yarn.lock
32- token : ${{ secrets.GITHUB_TOKEN }}
36+ token : ${{ secrets.GITHUB_TOKEN }}
Original file line number Diff line number Diff line change @@ -28,5 +28,5 @@ inputs:
2828 required : false
2929 default : ' false'
3030runs :
31- using : ' node16 '
31+ using : ' node20 '
3232 main : ' dist/index.js'
You can’t perform that action at this time.
0 commit comments