We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent c117268 commit 5bb98d2Copy full SHA for 5bb98d2
.github/workflows/code_health_fork.yaml
@@ -11,9 +11,14 @@ jobs:
11
run-tests:
12
name: Run MongoDB tests
13
if: github.event.pull_request.user.login == 'dependabot[bot]' || github.event.pull_request.head.repo.full_name != github.repository
14
- runs-on: ubuntu-latest
+ strategy:
15
+ matrix:
16
+ os: [ubuntu-latest, macos-latest, windows-latest]
17
+ fail-fast: false
18
+ runs-on: ${{ matrix.os }}
19
steps:
20
- uses: GitHubSecurityLab/actions-permissions/monitor@v1
21
+ if: matrix.os != 'windows-latest'
22
- uses: actions/checkout@v4
23
- uses: actions/setup-node@v4
24
with:
@@ -24,7 +29,7 @@ jobs:
29
- name: Run tests
25
30
run: npm test
26
31
- name: Upload test results
27
- if: always()
32
+ if: always() && matrix.os == 'ubuntu-latest'
28
33
uses: actions/upload-artifact@v4
34
35
name: test-results
0 commit comments