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 01f799c commit 1f0e619Copy full SHA for 1f0e619
.github/workflows/code-health-fork.yml
@@ -41,3 +41,24 @@ jobs:
41
with:
42
name: test-results
43
path: coverage/lcov.info
44
+ run-atlas-local-tests:
45
+ name: Run Atlas Local tests
46
+ if: github.event.pull_request.user.login == 'dependabot[bot]'
47
+ runs-on: ubuntu-latest
48
+ steps:
49
+ - uses: GitHubSecurityLab/actions-permissions/monitor@v1
50
+ - uses: actions/checkout@v5
51
+ - uses: actions/setup-node@v4
52
+ with:
53
+ node-version-file: package.json
54
+ cache: "npm"
55
+ - name: Install dependencies
56
+ run: npm ci
57
+ - name: Run tests
58
+ run: npm test -- tests/integration/tools/atlas-local/
59
+ - name: Upload test results
60
+ uses: actions/upload-artifact@v4
61
+ if: always()
62
63
+ name: atlas-local-test-results
64
+ path: coverage/lcov.info
0 commit comments