Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

feat(SDK-250): denylist bot #115

Open
wants to merge 13 commits into
base: main
Choose a base branch
from
Prev Previous commit
Next Next commit
feat(bot): update CI tests
  • Loading branch information
1Mateus committed Apr 11, 2023
commit 1b2d4c4d4886fd6e46d5cff2818cb5dfd43425f0
2 changes: 1 addition & 1 deletion .github/workflows/CI.yml
Original file line number Diff line number Diff line change
Expand Up @@ -54,7 +54,7 @@ jobs:
- name: Compile circuits
run: yarn circuits circuit:setup:plonk

- name: Run test-ts setup and test SDK and Relayer
- name: Run test-ts setup and test SDK, Relayer and Denylist Bot
env:
CF_TOKEN: ${{ secrets.CF_API_TOKEN }}
CF_IDENTIFIER: ${{ secrets.CF_IDENTIFIER }}
Expand Down
2 changes: 1 addition & 1 deletion packages/relayer/package.json
Original file line number Diff line number Diff line change
Expand Up @@ -9,7 +9,7 @@
"dev": "miniflare --live-reload --debug --modules dist/index.mjs --env .env",
"dev:remote": "wrangler dev",
"test:only": "yarn build && node --experimental-vm-modules --no-warnings node_modules/.bin/jest --forceExit --detectOpenHandles",
"test": "(cd ../contracts && yarn tests:ts) && (cd ../sdk && yarn test:only) && yarn test:only --forceExit --detectOpenHandles",
"test": "(cd ../contracts && yarn tests:ts) && (cd ../sdk && yarn test:only) && (cd ../denylist-bot && yarn test:only) && yarn test:only --forceExit --detectOpenHandles",
"types:check": "tsc && tsc -p test/tsconfig.json",
"deploy": "yarn build && wrangler publish --keep-vars",
"populate:envs": "cd scripts && tsc && node build/populateEnvs.js"
Expand Down