mirror of
https://github.com/logos-messaging/logos-messaging-js.git
synced 2026-01-16 23:13:08 +00:00
fix: add warning annotations for contract typings check
This commit is contained in:
parent
71525a03c9
commit
b7eabf5276
4
.github/workflows/ci.yml
vendored
4
.github/workflows/ci.yml
vendored
@ -127,12 +127,12 @@ jobs:
|
||||
run: |
|
||||
cd packages/rln
|
||||
npm run setup:contract-abi || {
|
||||
echo "Failed to generate contract ABIs, marking @waku/rln as private to skip publishing"
|
||||
echo "::warning::Failed to generate contract ABIs, marking @waku/rln as private to skip publishing"
|
||||
node -e "const fs = require('fs'); const pkg = JSON.parse(fs.readFileSync('package.json', 'utf8')); pkg.private = true; fs.writeFileSync('package.json', JSON.stringify(pkg, null, 2));"
|
||||
exit 0
|
||||
}
|
||||
npm run build || {
|
||||
echo "Failed to build @waku/rln, marking as private to skip publishing"
|
||||
echo "::warning::Failed to build @waku/rln, marking as private to skip publishing"
|
||||
node -e "const fs = require('fs'); const pkg = JSON.parse(fs.readFileSync('package.json', 'utf8')); pkg.private = true; fs.writeFileSync('package.json', JSON.stringify(pkg, null, 2));"
|
||||
exit 0
|
||||
}
|
||||
|
||||
4
.github/workflows/pre-release.yml
vendored
4
.github/workflows/pre-release.yml
vendored
@ -34,12 +34,12 @@ jobs:
|
||||
run: |
|
||||
cd packages/rln
|
||||
npm run setup:contract-abi || {
|
||||
echo "Failed to generate contract ABIs, marking @waku/rln as private to skip publishing"
|
||||
echo "::warning::Failed to generate contract ABIs, marking @waku/rln as private to skip publishing"
|
||||
node -e "const fs = require('fs'); const pkg = JSON.parse(fs.readFileSync('package.json', 'utf8')); pkg.private = true; fs.writeFileSync('package.json', JSON.stringify(pkg, null, 2));"
|
||||
exit 0
|
||||
}
|
||||
npm run build || {
|
||||
echo "Failed to build @waku/rln, marking as private to skip publishing"
|
||||
echo "::warning::Failed to build @waku/rln, marking as private to skip publishing"
|
||||
node -e "const fs = require('fs'); const pkg = JSON.parse(fs.readFileSync('package.json', 'utf8')); pkg.private = true; fs.writeFileSync('package.json', JSON.stringify(pkg, null, 2));"
|
||||
exit 0
|
||||
}
|
||||
|
||||
Loading…
x
Reference in New Issue
Block a user