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
4 changes: 2 additions & 2 deletions docs/src/content/docs/guides/ci-policy-setup.md
Original file line number Diff line number Diff line change
Expand Up @@ -50,7 +50,7 @@ Commit this to the default branch of `your-org/.github`.

## Step 2: Add baseline CI checks

Add `apm audit --ci` to your CI pipeline. This runs 6 lockfile consistency checks — no policy file needed:
Add `apm audit --ci` to your CI pipeline. This runs 7 baseline lockfile checks plus integration drift detection — no policy file needed:

```yaml
# .github/workflows/apm-policy.yml
Expand Down Expand Up @@ -80,7 +80,7 @@ jobs:
run: apm audit --ci
```

This catches lockfile/manifest drift, missing files, and hidden Unicode — without any policy configuration.
This catches lockfile/manifest drift, missing files, hidden Unicode, and integration drift (forgot to re-run `apm install`, hand-edits to deployed files, orphaned files) — without any policy configuration. See the [Drift Detection guide](../drift-detection/) for details.

## Step 3: Enable policy enforcement

Expand Down
Loading