File tree Expand file tree Collapse file tree 1 file changed +1
-5
lines changed
Expand file tree Collapse file tree 1 file changed +1
-5
lines changed Original file line number Diff line number Diff line change 66 build :
77 strategy :
88 matrix :
9- node-version : [20.x, 22.x]
9+ node-version : [20.x, 22.x, 24.x ]
1010 platform :
1111 - os : ubuntu-latest
1212 shell : bash
2525
2626 steps :
2727 - name : Checkout Repository
28- if : ${{ (matrix.node-version == '18.x') || (matrix.node-version == '19.x') || (matrix.platform.os != 'windows-latest') }}
2928 uses : actions/checkout@v4
3029
3130 - name : Use Nodejs ${{ matrix.node-version }}
32- if : ${{ (matrix.node-version == '18.x') || (matrix.node-version == '19.x') || (matrix.platform.os != 'windows-latest') }}
3331 uses : actions/setup-node@v4
3432 with :
3533 node-version : ${{ matrix.node-version }}
3836 run : echo NODEVERSION=[${{ matrix.node-version }}] OS=[${{ matrix.platform.os }}]
3937
4038 - name : Install dependencies
41- if : ${{ (matrix.node-version == '18.x') || (matrix.node-version == '19.x') || (matrix.platform.os != 'windows-latest') }}
4239 run : npm install
4340
4441 - name : Run Tests
45- if : ${{ (matrix.node-version == '18.x') || (matrix.node-version == '19.x') || (matrix.platform.os != 'windows-latest') }}
4642 run : npm test -- -c -t0
You can’t perform that action at this time.
0 commit comments