From 11d2ed98b089dff19a7c2521b0f36ffc81a49b0c Mon Sep 17 00:00:00 2001 From: =?utf8?q?J=C3=A9r=C3=B4me=20Benoit?= Date: Wed, 23 Oct 2024 19:26:10 +0200 Subject: [PATCH] build(ci): readd pnpm audit step MIME-Version: 1.0 Content-Type: text/plain; charset=utf8 Content-Transfer-Encoding: 8bit Signed-off-by: Jérôme Benoit --- .github/workflows/ci.yml | 12 ++++++------ 1 file changed, 6 insertions(+), 6 deletions(-) diff --git a/.github/workflows/ci.yml b/.github/workflows/ci.yml index 066e15bb..bbbf0ff6 100644 --- a/.github/workflows/ci.yml +++ b/.github/workflows/ci.yml @@ -74,9 +74,9 @@ jobs: cache: 'pnpm' - name: pnpm install run: pnpm install --ignore-scripts --frozen-lockfile - # - name: pnpm audit - # if: ${{ matrix.os == 'ubuntu-latest' && matrix.node == '20.x' }} - # run: pnpm audit --prod + - name: pnpm audit + if: ${{ matrix.os == 'ubuntu-latest' && matrix.node == '20.x' }} + run: pnpm audit --prod - name: pnpm lint if: ${{ matrix.os == 'ubuntu-latest' && matrix.node == '20.x' }} run: pnpm lint @@ -125,9 +125,9 @@ jobs: cache: 'pnpm' - name: pnpm install run: pnpm install --ignore-scripts --frozen-lockfile - # - name: pnpm audit - # if: ${{ matrix.os == 'ubuntu-latest' && matrix.node == '20.x' }} - # run: pnpm audit --prod + - name: pnpm audit + if: ${{ matrix.os == 'ubuntu-latest' && matrix.node == '20.x' }} + run: pnpm audit --prod - name: pnpm lint if: ${{ matrix.os == 'ubuntu-latest' && matrix.node == '20.x' }} run: pnpm lint -- 2.34.1