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

fix(ctb): slither triaging and documentation

parent dc01c039
...@@ -436,6 +436,11 @@ jobs: ...@@ -436,6 +436,11 @@ jobs:
command: | command: |
pnpm snapshots:check || echo "export SNAPSHOTS_STATUS=1" >> "$BASH_ENV" pnpm snapshots:check || echo "export SNAPSHOTS_STATUS=1" >> "$BASH_ENV"
working_directory: packages/contracts-bedrock 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: - run:
name: check statuses name: check statuses
command: | command: |
...@@ -463,6 +468,10 @@ jobs: ...@@ -463,6 +468,10 @@ jobs:
echo "Snapshots check failed, see job output for details." echo "Snapshots check failed, see job output for details."
FAILED=1 FAILED=1
fi fi
if [[ "$SLITHER_STATUS" -ne 0 ]]; then
echo "Slither check failed, see job output for details."
FAILED=1
fi
if [[ "$FAILED" -ne 0 ]]; then if [[ "$FAILED" -ne 0 ]]; then
exit 1 exit 1
fi fi
...@@ -1408,7 +1417,6 @@ workflows: ...@@ -1408,7 +1417,6 @@ workflows:
- contracts-bedrock-checks: - contracts-bedrock-checks:
requires: requires:
- pnpm-monorepo - pnpm-monorepo
- contracts-bedrock-slither
- contracts-bedrock-validate-spaces: - contracts-bedrock-validate-spaces:
requires: requires:
- pnpm-monorepo - 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