File tree Expand file tree Collapse file tree 1 file changed +7
-2
lines changed Expand file tree Collapse file tree 1 file changed +7
-2
lines changed Original file line number Diff line number Diff line change 1111 run-tests :
1212 name : Run MongoDB tests
1313 if : github.event.pull_request.user.login == 'dependabot[bot]' || github.event.pull_request.head.repo.full_name != github.repository
14- runs-on : ubuntu-latest
14+ strategy :
15+ matrix :
16+ os : [ubuntu-latest, macos-latest, windows-latest]
17+ fail-fast : false
18+ runs-on : ${{ matrix.os }}
1519 steps :
1620 - uses : GitHubSecurityLab/actions-permissions/monitor@v1
21+ if : matrix.os != 'windows-latest'
1722 - uses : actions/checkout@v4
1823 - uses : actions/setup-node@v4
1924 with :
2429 - name : Run tests
2530 run : npm test
2631 - name : Upload test results
27- if : always()
32+ if : always() && matrix.os == 'ubuntu-latest'
2833 uses : actions/upload-artifact@v4
2934 with :
3035 name : test-results
You can’t perform that action at this time.
0 commit comments