Skip to content

Commit

Permalink
v0.4.0-beta.1 Release (#123)
Browse files Browse the repository at this point in the history
  • Loading branch information
hazim-j authored Apr 4, 2024
1 parent 8e78819 commit 9c1335e
Show file tree
Hide file tree
Showing 106 changed files with 2,392 additions and 14,762 deletions.
11 changes: 0 additions & 11 deletions .eslintignore

This file was deleted.

28 changes: 0 additions & 28 deletions .eslintrc.json

This file was deleted.

37 changes: 31 additions & 6 deletions .github/workflows/pipeline.yml
Original file line number Diff line number Diff line change
Expand Up @@ -7,7 +7,7 @@ on:
branches: [main]

jobs:
checks:
test:
runs-on: ubuntu-latest

strategy:
Expand All @@ -25,14 +25,39 @@ jobs:
- name: Install dependencies
run: yarn install --frozen-lockfile

- name: Checkout erc-4337-devnet
uses: actions/checkout@v3
with:
repository: stackup-wallet/erc-4337-devnet
path: ./erc-4337-devnet

- name: Deploy ERC-4337 devnet
working-directory: ./erc-4337-devnet
run: docker-compose up -d --build

- name: Test
run: yarn run test
run: make -C ./erc-4337-devnet wait && yarn run test

lint:
runs-on: ubuntu-latest

strategy:
matrix:
node-version: [18.x]

steps:
- uses: actions/checkout@v3

- name: Use Node.js ${{ matrix.node-version }}
uses: actions/setup-node@v2
with:
node-version: ${{ matrix.node-version }}

- name: Install dependencies
run: yarn install --frozen-lockfile

- name: Lint
run: yarn run lint

- name: Code format
- name: Format
run: yarn run prettier

- name: build
run: yarn run build
5 changes: 2 additions & 3 deletions .npmignore
Original file line number Diff line number Diff line change
@@ -1,9 +1,8 @@
.github
src
tests
.eslintignore
.eslintrc.json
.gitignore
.prettierignore
.prettierrc.json
eslint.config.js
jest.config.js
tsconfig.json
4 changes: 4 additions & 0 deletions .prettierignore
Original file line number Diff line number Diff line change
@@ -0,0 +1,4 @@
.prettierignore
.gitignore
.npmignore
yarn.lock
4 changes: 3 additions & 1 deletion .prettierrc.json
Original file line number Diff line number Diff line change
@@ -1 +1,3 @@
{}
{
"trailingComma": "all"
}
3 changes: 3 additions & 0 deletions README.md
Original file line number Diff line number Diff line change
Expand Up @@ -12,9 +12,12 @@ See the `userop` documentation at [docs.stackup.sh](https://docs.stackup.sh/docs

# Contributing

Steps for setting up a local dev environment for contributing to userop.js.

## Prerequisites

- Node 16 or later
- [ERC-4337 Devnet](https:/stackup-wallet/erc-4337-devnet) running

## Setup

Expand Down
269 changes: 0 additions & 269 deletions abi/BarzAccountFacet.json

This file was deleted.

Loading

0 comments on commit 9c1335e

Please sign in to comment.