File tree Expand file tree Collapse file tree 1 file changed +13
-11
lines changed Expand file tree Collapse file tree 1 file changed +13
-11
lines changed Original file line number Diff line number Diff line change 77 branches : [main]
88
99jobs :
10- run_tests :
11- runs-on : ubuntu-latest
10+ tests :
11+ runs-on : ${{ matrix.os }}
1212 strategy :
1313 matrix :
14- node-version : [18.18.0, 20.18.0, latest]
14+ node-version : [18.18.0, latest]
15+ os : [
16+ ubuntu-latest, # x64
17+ ubuntu-24.04-arm, # arm64
18+ macos-13, # x64
19+ macos-latest, # arm64
20+ ]
1521 steps :
16- -
17- name : Checkout repository
22+ - name : Checkout repository
1823 uses : actions/checkout@v4
19- -
20- name : Use Node.js ${{ matrix.node-version }}
24+ - name : Use Node.js ${{ matrix.node-version }} on ${{ matrix.os }}
2125 uses : actions/setup-node@v4
2226 with :
2327 node-version : ${{ matrix.node-version }}
24- -
25- name : Install dependencies
28+ - name : Install dependencies
2629 run : npm ci
27- -
28- name : Run tests
30+ - name : Run tests
2931 run : npm test
You can’t perform that action at this time.
0 commit comments