Skip to content

Commit

Permalink
clean up
Browse files Browse the repository at this point in the history
  • Loading branch information
allan-almeida-imtbl committed Sep 26, 2023
1 parent 4303965 commit 4ff2d15
Show file tree
Hide file tree
Showing 3 changed files with 7 additions and 6 deletions.
6 changes: 3 additions & 3 deletions .github/workflows/test.yml
Original file line number Diff line number Diff line change
Expand Up @@ -17,7 +17,7 @@ jobs:
uses: actions/setup-node@v3
with:
node-version: lts/*
- name: Install NPM Dependencies
- name: Install dependencies
run: yarn install --frozen-lockfile
- name: Run Tests
run: yarn test
Expand All @@ -31,7 +31,7 @@ jobs:
uses: actions/setup-node@v3
with:
node-version: lts/*
- name: Install NPM Dependencies
run: npm ci
- name: Install dependencies
run: yarn install --frozen-lockfile
- name: Run eslint
run: yarn lint
5 changes: 3 additions & 2 deletions CONTRIBUTING.md
Original file line number Diff line number Diff line change
Expand Up @@ -61,7 +61,7 @@ git checkout -b <your-branch-name>
6. Be sure to run the tests and set up the relevant linters to ensure all GitHub checks pass (see GitHub issues: https://docs.github.com/en/issues/tracking-your-work-with-issues/about-issues for more information).

```
npm test
yarn test
```

7. Add and commit your changes, including a comprehensive commit message summarising your changes, then push changes to your fork. (e.g. Fixed formatting issue with ImmutableERC721MintByID.sol)
Expand All @@ -79,4 +79,5 @@ git push origin <your-branch-name>
9. We will review the pull requests and request any necessary changes. If all the checks (linting, compilation, tests) pass and everything looks good, your code will be merged into the original repository. Congratulations, and thank you for your contribution!

## Releasing
To release the package to NPM, simply create a new GitHub release and the "Publish to NPM" GitHub action will release it to NPM.

To release the package to NPM, simply create a new GitHub release and the "Publish to NPM" GitHub action will release it to NPM.
2 changes: 1 addition & 1 deletion README.md
Original file line number Diff line number Diff line change
Expand Up @@ -19,7 +19,7 @@ These contracts are feature-rich and are the recommended standard on Immutable z
### Installation

```
$ npm install @imtbl/zkevm-contracts
$ yarn install @imtbl/zkevm-contracts
```

### Usage
Expand Down

0 comments on commit 4ff2d15

Please sign in to comment.