diff --git a/.github/workflows/security_check.yml b/.github/workflows/security_check.yml index d002ec2..2f523a1 100644 --- a/.github/workflows/security_check.yml +++ b/.github/workflows/security_check.yml @@ -17,9 +17,10 @@ jobs: - name: Install dependencies run: yarn install - name: Run yarn audit - run: yarn audit --no-color > .yarn-audit + run: yarn audit --no-color --json > yarn-report.json + continue-on-error: true # we still want to upload the report - name: Upload report uses: actions/upload-artifact@v4 with: name: yarn-audit-report - path: ${{ github.workspace }} + path: yarn-report.json