File tree Expand file tree Collapse file tree
Expand file tree Collapse file tree Original file line number Diff line number Diff line change 77 strategy :
88 matrix :
99 node-version :
10- - 18 .x
10+ - 20 .x
1111 os :
1212 - windows-latest
1313 - ubuntu-latest
1616 steps :
1717 - uses : actions/checkout@v2
1818 - name : Use Node.js ${{ matrix.node-version }}
19- uses : actions/setup-node@v3
19+ uses : actions/setup-node@v4
2020 with :
2121 node-version : ${{ matrix.node-version }}
22+ - name : Install dependencies
23+ if : ${{ startsWith(matrix.os, 'ubuntu') }}
24+ run : sudo apt install -y unixodbc-dev
2225 - name : Install dependencies
2326 if : ${{ startsWith(matrix.os, 'macos') }}
2427 run : brew install unixodbc
Original file line number Diff line number Diff line change 99 strategy :
1010 matrix :
1111 node-version :
12- - 18 .x
12+ - 20 .x
1313 os :
1414 - windows-2022
1515 - ubuntu-22.04
16- # arm64
17- - macos-14
18- # x86_64
19- - macos-13
16+ - macos-15
17+ - macos-15-intel
2018 runs-on : ${{ matrix.os }}
2119 steps :
2220 - uses : actions/checkout@v2
2321 - name : Use Node.js ${{ matrix.node-version }}
24- uses : actions/setup-node@v3
22+ uses : actions/setup-node@v4
2523 with :
2624 node-version : ${{ matrix.node-version }}
25+ - name : Install dependencies
26+ if : ${{ startsWith(matrix.os, 'ubuntu') }}
27+ run : sudo apt install -y unixodbc-dev
2728 - name : Install Build Dependencies
2829 if : ${{ startsWith(matrix.os, 'macos') }}
2930 run : brew install unixodbc
You can’t perform that action at this time.
0 commit comments