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

add @qng/eip4337-sdk #11

Merged
merged 6 commits into from
Sep 12, 2024
Merged
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
9 changes: 9 additions & 0 deletions .github/workflows/publish.yml
Original file line number Diff line number Diff line change
Expand Up @@ -23,7 +23,16 @@ jobs:

steps:
- uses: actions/checkout@v4
- name: Check if version has changed
id: check_version
run: |
if git diff HEAD^ HEAD package.json | grep '"version"'; then
echo "::set-output name=version_changed::true";
else
echo "::set-output name=version_changed::false";
fi
- name: Use Node.js ${{ matrix.node-version }}
if: steps.check_version.outputs.version_changed == 'true'
uses: actions/setup-node@v4
with:
node-version: ${{ matrix.node-version }}
Expand Down
3 changes: 2 additions & 1 deletion .gitignore
Original file line number Diff line number Diff line change
Expand Up @@ -5,4 +5,5 @@ test/taw.md
test/blocktest.js
test/test.0.9.js
yarn-error.log
dist
dist
qitmeerts
Loading