Skip to content
Open
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
48 changes: 18 additions & 30 deletions .circleci/config.yml
Original file line number Diff line number Diff line change
@@ -1,38 +1,26 @@
# Use the latest 2.1 version of CircleCI pipeline process engine.
# See: https://circleci.com/docs/2.0/configuration-reference
version: 2.1
# See: https://circleci.com/docs/configuration-reference

# Define a job to be invoked later in a workflow.
# See: https://circleci.com/docs/2.0/configuration-reference/#jobs
jobs:
test:
# Specify the execution environment. You can specify an image from Dockerhub or use one of our Convenience Images from CircleCI's Developer Hub.
# See: https://circleci.com/docs/2.0/configuration-reference/#docker-machine-macos-windows-executor
version: 2.1
executors:
my-custom-executor:
docker:
- image: cimg/node:lts
# Add steps to the job
# See: https://circleci.com/docs/2.0/configuration-reference/#steps
- 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
steps:
- checkout
- restore_cache:
name: Restore Yarn package cache
keys:
- yarn-packages-{{ checksum "yarn.lock" }}
- run:
name: Install dependencies
command: 'yarn --frozen-lockfile'
- save_cache:
name: Save Yarn package cache
key: yarn-packages-{{ checksum "yarn.lock" }}
paths:
- ~/.cache/yarn
- run:
name: Run tests
command: 'yarn test'
- run: |
# echo Hello, World!

# Invoke jobs via workflows
# See: https://circleci.com/docs/2.0/configuration-reference/#workflows
workflows:
workflow:
my-custom-workflow:
jobs:
- test
- web3-defi-game-project-
16 changes: 8 additions & 8 deletions package.json
Original file line number Diff line number Diff line change
Expand Up @@ -57,37 +57,37 @@
"homepage": "https://github.com/alchemyplatform/alchemy-sdk-js#readme",
"dependencies": {
"@ethersproject/abi": "^5.7.0",
"@ethersproject/abstract-provider": "^5.7.0",
"@ethersproject/abstract-provider": "^5.8.0",
"@ethersproject/bignumber": "^5.7.0",
"@ethersproject/bytes": "^5.7.0",
"@ethersproject/contracts": "^5.7.0",
"@ethersproject/hash": "^5.7.0",
"@ethersproject/networks": "^5.7.0",
"@ethersproject/providers": "^5.7.0",
"@ethersproject/units": "^5.7.0",
"@ethersproject/wallet": "^5.7.0",
"@ethersproject/wallet": "^5.8.0",
"@ethersproject/web": "^5.7.0",
"@solana/web3.js": "^1.87.6",
"axios": "^1.7.4",
"axios": "^1.8.3",
"sturdy-websocket": "^0.2.1",
"websocket": "^1.0.34"
},
"devDependencies": {
"@rollup/plugin-commonjs": "^22.0.0",
"@rollup/plugin-commonjs": "^28.0.0",
"@rollup/plugin-node-resolve": "^13.3.0",
"@size-limit/preset-big-lib": "^7.0.8",
"@size-limit/preset-big-lib": "^11.0.1",
"@trivago/prettier-plugin-sort-imports": "^3.3.1",
"@types/jest": "^27.4.1",
"@typescript-eslint/eslint-plugin": "^5.16.0",
"@typescript-eslint/parser": "^5.16.0",
"axios-mock-adapter": "^1.22.0",
"dotenv": "^16.0.3",
"eslint": "^8.11.0",
"eslint": "^9.0.0",
"eslint-plugin-import": "^2.25.4",
"eslint-plugin-unused-imports": "^2.0.0",
"husky": "^7.0.0",
"jest": "^27.5.1",
"lint-staged": "^12.3.7",
"jest": "^30.0.0",
"lint-staged": "^16.0.0",
"mock-socket": "^9.1.4",
"prettier": "2.6.0",
"prettier-plugin-jsdoc": "^0.3.38",
Expand Down