Skip to content
Closed
Show file tree
Hide file tree
Changes from all commits
Commits
Show all changes
16 commits
Select commit Hold shift + click to select a range
5fd3931
build(deps): bump the npm_and_yarn group across 4 directories with 2 …
dependabot[bot] Jun 29, 2025
a148802
Merge branch 'alchemyplatform:main' into 32-generated-by-sourcery-aib…
Dargon789 Jul 2, 2025
ff64d15
Merge branch 'alchemyplatform:main' into 32-generated-by-sourcery-aib…
Dargon789 Jul 2, 2025
275c548
Merge branch 'alchemyplatform:main' into 32-generated-by-sourcery-aib…
Dargon789 Jul 10, 2025
5cef0c5
Merge branch 'alchemyplatform:main' into 32-generated-by-sourcery-aib…
Dargon789 Jul 13, 2025
42597dd
Merge branch 'alchemyplatform:main' into 32-generated-by-sourcery-aib…
Dargon789 Aug 9, 2025
9288c90
Merge branch 'alchemyplatform:main' into 32-generated-by-sourcery-aib…
Dargon789 Sep 11, 2025
0eb422f
Merge remote-tracking branch 'upstream/main' into ERC-20-gas-paymaste…
googleworkspace-bot Apr 17, 2026
2d8e7e6
build(deps): bump the npm_and_yarn group across 4 directories with 2 …
Dargon789 Apr 17, 2026
07420b5
Circleci project setup (#56)
Dargon789 Apr 17, 2026
df3ca38
Merge remote-tracking branch 'upstream/main'
googleworkspace-bot Apr 20, 2026
1562b8a
Merge branch 'alchemyplatform:main' into ERC20-gas-paymaster
Dargon789 Apr 20, 2026
8a97272
Merge remote-tracking branch 'upstream/main'
googleworkspace-bot May 8, 2026
0a4feac
docs: update v5 SDK reference docs for 5.0.0-beta.27 (#146) (#148)
Dargon789 May 8, 2026
e1dfb75
Merge remote-tracking branch 'upstream/main' into ERC20-gas-paymaster
googleworkspace-bot May 8, 2026
80ebd2d
Merge branch 'main' into ERC20-gas-paymaster
Dargon789 May 8, 2026
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
31 changes: 31 additions & 0 deletions .circleci/config.yml
Original file line number Diff line number Diff line change
@@ -0,0 +1,31 @@
# Use the latest 2.1 version of CircleCI pipeline process engine.
# See: https://circleci.com/docs/configuration-reference
version: 2.1

# Define a job to be invoked later in a workflow.
# See: https://circleci.com/docs/jobs-steps/#jobs-overview & https://circleci.com/docs/configuration-reference/#jobs
jobs:
say-hello:
# Specify the execution environment. You can specify an image from Docker Hub or use one of our convenience images from CircleCI's Developer Hub.
# See: https://circleci.com/docs/executor-intro/ & https://circleci.com/docs/configuration-reference/#executor-job
docker:
# Specify the version you desire here
# See: https://circleci.com/developer/images/image/cimg/base
- image: cimg/base:current

# Add steps to the job
# See: https://circleci.com/docs/jobs-steps/#steps-overview & https://circleci.com/docs/configuration-reference/#steps
steps:
# Checkout the code as the first step.
- checkout
- run:
name: "Say hello"
command: "echo Hello, World!"

# Orchestrate jobs using workflows
# See: https://circleci.com/docs/workflows/ & https://circleci.com/docs/configuration-reference/#workflows
workflows:
say-hello-workflow: # This is the name of the workflow, feel free to change it to better match your workflow.
# Inside the workflow, you define the jobs you want to run.
jobs:
- say-hello
2 changes: 2 additions & 0 deletions .github/workflows/on-pull-request.yml
Original file line number Diff line number Diff line change
Expand Up @@ -39,6 +39,8 @@ jobs:
lint_docs:
name: Lint Documentation
runs-on: ubuntu-latest
permissions:
contents: read
needs: changes
if: ${{ needs.changes.outputs.docs == 'true' }}
steps:
Expand Down
2 changes: 1 addition & 1 deletion account-kit/plugingen/package.json
Original file line number Diff line number Diff line change
Expand Up @@ -65,7 +65,7 @@
"change-case": "^5.4.3",
"chokidar": "^3.6.0",
"dedent": "^1.5.1",
"esbuild": "^0.20.1",
"esbuild": "^0.25.5",
"find-up": "^7.0.0",
"fs-extra": "^11.2.0",
"ora": "^8.0.1",
Expand Down