Skip to content
Open
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension


Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
21 changes: 21 additions & 0 deletions .github/workflows/code-health-fork.yml
Original file line number Diff line number Diff line change
Expand Up @@ -41,3 +41,24 @@ jobs:
with:
name: test-results
path: coverage/lcov.info
run-atlas-local-tests:
name: Run Atlas Local tests
if: github.event.pull_request.user.login == 'dependabot[bot]'
runs-on: ubuntu-latest
steps:
- uses: GitHubSecurityLab/actions-permissions/monitor@v1
- uses: actions/checkout@v5
- uses: actions/setup-node@v4
with:
node-version-file: package.json
cache: "npm"
- name: Install dependencies
run: npm ci
- name: Run tests
run: npm test -- tests/integration/tools/atlas-local/
- name: Upload test results
Copy link
Collaborator

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

This is not an issue with this PR, but we don't really need the coverage uploaded, so we could drop this step from the local tests, as well as the one in the mongodb tests.

uses: actions/upload-artifact@v4
if: always()
with:
name: atlas-local-test-results
path: coverage/lcov.info
Loading