Commit 09f80929 authored by refcell's avatar refcell Committed by clabby

fix(ctb): slither triaging and documentation

parent dc01c039
......@@ -436,6 +436,11 @@ jobs:
command: |
pnpm snapshots:check || echo "export SNAPSHOTS_STATUS=1" >> "$BASH_ENV"
working_directory: packages/contracts-bedrock
- run:
name: slither
command: |
pnpm slither:check || echo "export SLITHER_STATUS=1" >> "$BASH_ENV"
working_directory: packages/contracts-bedrock
- run:
name: check statuses
command: |
......@@ -463,6 +468,10 @@ jobs:
echo "Snapshots check failed, see job output for details."
FAILED=1
fi
if [[ "$SLITHER_STATUS" -ne 0 ]]; then
echo "Slither check failed, see job output for details."
FAILED=1
fi
if [[ "$FAILED" -ne 0 ]]; then
exit 1
fi
......@@ -1408,7 +1417,6 @@ workflows:
- contracts-bedrock-checks:
requires:
- pnpm-monorepo
- contracts-bedrock-slither
- contracts-bedrock-validate-spaces:
requires:
- pnpm-monorepo
......
Markdown is supported
0% or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment