From 30da4ae60552d8afcae959aaf219d0dc4b4424ed Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Jos=C3=A9=20Carlos=20Ch=C3=A1vez?= Date: Thu, 9 Apr 2026 20:07:30 +0200 Subject: [PATCH] fix(security): run npm ci with --ignore-scripts to avoid malicious scripts --- .github/workflows/build.yml | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/.github/workflows/build.yml b/.github/workflows/build.yml index e747d19a..a660f9f0 100644 --- a/.github/workflows/build.yml +++ b/.github/workflows/build.yml @@ -33,7 +33,7 @@ jobs: uses: actions/setup-node@v4 with: node-version: 18 - - run: npm ci + - run: npm ci --ignore-scripts - run: npm run lint - run: npm run build - run: npm run test:ci