Skip to content
Closed
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension


Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
18 changes: 0 additions & 18 deletions .changeset/cyan-radios-relax.md

This file was deleted.

21 changes: 0 additions & 21 deletions .changeset/goofy-laws-serve.md

This file was deleted.

20 changes: 0 additions & 20 deletions .changeset/open-toes-marry.md

This file was deleted.

17 changes: 0 additions & 17 deletions .changeset/plain-feet-stare.md

This file was deleted.

33 changes: 0 additions & 33 deletions .changeset/pre.json

This file was deleted.

17 changes: 0 additions & 17 deletions .changeset/wild-feet-carry.md

This file was deleted.

17 changes: 0 additions & 17 deletions .changeset/wise-heads-buy.md

This file was deleted.

36 changes: 16 additions & 20 deletions .circleci/config.yml
Original file line number Diff line number Diff line change
@@ -1,26 +1,22 @@
# Use the latest 2.1 version of CircleCI pipeline process engine.
# See: https://circleci.com/docs/configuration-reference

version: 2.1
executors:
my-custom-executor:
docker:
- image: cimg/base:stable
auth:
# ensure you have first added these secrets
# visit app.circleci.com/settings/project/github/Dargon789/hardhat-project/environment-variables
username: $DOCKER_HUB_USER
password: $DOCKER_HUB_PASSWORD

jobs:
web3-defi-game-project-:

executor: my-custom-executor
test:
docker:
- image: ghcr.io/foundry-rs/foundry:latest
Comment thread
Dargon789 marked this conversation as resolved.
steps:
- checkout
- run: |
# echo Hello, World!

- run:
name: Install submodules
command: git submodule update --init --recursive
- run:
name: Build
command: forge build
- run:
name: Test
command: forge test -vvv

workflows:
my-custom-workflow:
main:
jobs:
- web3-defi-game-project-
- test
2 changes: 2 additions & 0 deletions .github/workflows/tests.yml
Original file line number Diff line number Diff line change
Expand Up @@ -20,6 +20,8 @@ jobs:
- uses: ./.github/actions/install-dependencies
- run: pnpm clean
- run: pnpm build
- run: pnpm typecheck
- run: pnpm lint

tests:
name: Run all tests
Expand Down
2 changes: 1 addition & 1 deletion README.md
Original file line number Diff line number Diff line change
Expand Up @@ -30,7 +30,7 @@ Sequence v3 core libraries and [wallet-contracts-v3](https://github.com/0xsequen
- Run tests:
`pnpm test`

> **Note:** Tests require [anvil](https://github.com/foundry-rs/foundry/tree/master/anvil) and [forge](https://github.com/foundry-rs/foundry) to be installed. You can run a local anvil instance using `pnpm run test:anvil`.
> **Note:** Tests require [anvil](https://github.com/foundry-rs/foundry/tree/master/crates/anvil) and [forge](https://github.com/foundry-rs/foundry) to be installed. You can run a local anvil instance using `pnpm run test:anvil`.

- Linting and formatting is enforced via git hooks

Expand Down
4 changes: 2 additions & 2 deletions extras/docs/package.json
Original file line number Diff line number Diff line change
Expand Up @@ -13,14 +13,14 @@
},
"dependencies": {
"@repo/ui": "workspace:^",
"next": "^15.5.9",
"next": "^15.5.15",
"react": "^19.2.3",
"react-dom": "^19.2.3"
},
"devDependencies": {
"@repo/eslint-config": "workspace:^",
"@repo/typescript-config": "workspace:^",
"@types/node": "^25.0.2",
"@types/node": "^25.3.0",
"@types/react": "^19.2.7",
"@types/react-dom": "^19.2.3",
"eslint": "^9.39.2",
Expand Down
4 changes: 2 additions & 2 deletions extras/web/package.json
Original file line number Diff line number Diff line change
Expand Up @@ -13,14 +13,14 @@
},
"dependencies": {
"@repo/ui": "workspace:^",
"next": "^15.5.9",
"next": "^15.5.15",
"react": "^19.2.3",
"react-dom": "^19.2.3"
},
"devDependencies": {
"@repo/eslint-config": "workspace:^",
"@repo/typescript-config": "workspace:^",
"@types/node": "^25.0.2",
"@types/node": "^25.3.0",
"@types/react": "^19.2.7",
"@types/react-dom": "^19.2.3",
"eslint": "^9.39.2",
Expand Down
4 changes: 4 additions & 0 deletions lefthook.yml
Original file line number Diff line number Diff line change
Expand Up @@ -3,6 +3,10 @@ pre-commit:
prettier:
glob: '**/*.{js,jsx,ts,tsx,json,md,yml,yaml}'
run: pnpm prettier --write {staged_files} && git add {staged_files}
lint:
run: pnpm lint
typecheck:
run: pnpm typecheck
syncpack:
glob:
- "package.json"
Expand Down
16 changes: 8 additions & 8 deletions package.json
Original file line number Diff line number Diff line change
Expand Up @@ -8,24 +8,24 @@
"build": "pnpm build:packages",
"dev": "turbo dev",
"test": "turbo test --concurrency=1",
"lint": "turbo lint",
"lint": "turbo lint --continue",
"format": "prettier --list-different --write \"**/*.{ts,tsx,md}\"",
"typecheck": "turbo typecheck",
"postinstall": "lefthook install",
"dev:server": "node packages/wallet/primitives-cli/dist/index.js server",
"reinstall": "rimraf -g ./**/node_modules && pnpm install",
"test:anvil": "anvil --fork-url https://nodes.sequence.app/arbitrum",
"clean": "turbo clean",
"deps:lint": "syncpack list-mismatches",
"deps:fix": "syncpack fix-mismatches"
"deps:lint": "syncpack lint --dependency-types prod,dev",
"deps:fix": "syncpack fix"
},
"devDependencies": {
"@changesets/cli": "^2.29.8",
"lefthook": "^2.0.12",
"prettier": "^3.7.4",
"rimraf": "^6.1.2",
"syncpack": "^13.0.4",
"turbo": "^2.6.3",
"lefthook": "^2.1.1",
"prettier": "^3.8.1",
"rimraf": "^6.1.3",
"syncpack": "^14.0.0",
"turbo": "^2.8.10",
"typescript": "^5.9.3"
},
"pnpm": {
Expand Down
Loading
Loading