From b25d405972d433cf30f8cf86dcb9cece4c74bf37 Mon Sep 17 00:00:00 2001 From: Robert Slootjes Date: Tue, 13 Jan 2026 08:19:10 +0100 Subject: [PATCH] Add Bitbucket Pipelines example --- README.md | 16 ++++++++++++++++ 1 file changed, 16 insertions(+) diff --git a/README.md b/README.md index 57d1bf4..17d2515 100644 --- a/README.md +++ b/README.md @@ -271,6 +271,7 @@ iex "& { $(iwr 'https://github.com/AikidoSec/safe-chain/releases/latest/download - ✅ **Azure Pipelines** - ✅ **CircleCI** - ✅ **Jenkins** +- ✅ **Bitbucket Pipelines** ## GitHub Actions Example @@ -360,6 +361,21 @@ pipeline { } ``` +## Bitbucket Pipelines Example + +```yaml +image: node:22 + +steps: + - step: + name: Install + script: + - npm install -g @aikidosec/safe-chain + - safe-chain setup-ci + - export PATH=~/.safe-chain/shims:$PATH + - npm ci +``` + After setup, all subsequent package manager commands in your CI pipeline will automatically be protected by Aikido Safe Chain's malware detection. # Troubleshooting