-
Notifications
You must be signed in to change notification settings - Fork 182
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Add workflow and pull latest interface changes (#11)
* Add workflow * Modify yarn install * Try this for access * Try this for access * Try yarnrc * Try https * Add yarn lock * Try * Try * Try * Support new interface * All tests passing * Comment out workflow file for now * Add comment
- Loading branch information
1 parent
c6d6b4e
commit bc30f8a
Showing
12 changed files
with
244 additions
and
202 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,40 @@ | ||
# TODO: get back to this | ||
|
||
# on: | ||
# push: | ||
# branches: | ||
# - main | ||
# pull_request: | ||
|
||
# name: main workflow | ||
|
||
# env: | ||
# GITHUB_TOKEN: ${{ secrets.GH_PAT_TOKEN }} | ||
|
||
# jobs: | ||
# tests: | ||
# runs-on: ubuntu-latest | ||
|
||
# steps: | ||
# - uses: actions/checkout@v3 | ||
|
||
# - name: Setup Node.js | ||
# uses: actions/setup-node@v2 | ||
# with: | ||
# node-version: "16.11.0" | ||
# cache: yarn | ||
# registry-url: "https://npm.pkg.github.com" | ||
# env: | ||
# NODE_AUTH_TOKEN: ${{ secrets.GH_PAT_TOKEN }} | ||
|
||
# - name: Install dependencies | ||
# run: yarn install --immutable --ignore-scripts | ||
# env: | ||
# NODE_AUTH_TOKEN: ${{ secrets.GH_PAT_TOKEN }} | ||
# PKG_AUTH_TOKEN: ${{ secrets.GH_PAT_TOKEN }} | ||
|
||
# - name: Build | ||
# run: yarn build | ||
|
||
# - name: Run tests | ||
# run: yarn test |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,3 +1,20 @@ | ||
# Consideration Javascript Library | ||
|
||
This project contains a set of utilities to help interface with the Consideration contract. | ||
|
||
## Installation | ||
|
||
1. Ensure you have proper node version setup. Using `nvm` makes this really easy! | ||
2. Run `yarn` | ||
|
||
## Testing | ||
|
||
### Running tests | ||
|
||
To run the tests: | ||
|
||
```bash | ||
yarn test | ||
``` | ||
|
||
The first run might fail due to typechain needing to compile. If so, just run the command again. |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Oops, something went wrong.