[main] fix: remove jq dependency from workflow

- Replace jq command with simple echo
- jq is not installed by default in GitHub Actions runners
This commit is contained in:
simple
2025-05-29 23:58:36 +09:00
parent 7391f5160d
commit 9a52dafb03

View File

@ -44,7 +44,7 @@ jobs:
- name: Check package size
run: |
npm pack --dry-run
npm pack --dry-run --json | jq '.size' | xargs -I {} echo "Package size: {} bytes"
echo "Package created successfully"
- name: Security audit
run: npm audit --production || echo "Some vulnerabilities found"