-
Notifications
You must be signed in to change notification settings - Fork 95
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
* Old scripts removed * Changeset configuration * Step names * Changelog format compible with changeset * Commit parameter to false * Step job name updated * Tests added to release workflow
- Loading branch information
Showing
41 changed files
with
3,026 additions
and
2,132 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,13 @@ | ||
{ | ||
"$schema": "https://unpkg.com/@changesets/config@3.0.0/schema.json", | ||
"changelog": "@changesets/cli/changelog", | ||
"commit": false, | ||
"fixed": [], | ||
"linked": [], | ||
"access": "public", | ||
"baseBranch": "master", | ||
"___experimentalUnsafeOptions_WILL_CHANGE_IN_PATCH": { | ||
"updateInternalDependents": "always" | ||
}, | ||
"ignore": [] | ||
} |
23 changes: 12 additions & 11 deletions
23
.github/workflows/on-push.yaml → .github/workflows/build-and-test.yaml
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,36 +1,37 @@ | ||
name: Test Commit | ||
name: Build and test workflow | ||
|
||
on: | ||
pull_request: | ||
types: [opened, synchronize] | ||
push: | ||
branches: | ||
- master | ||
|
||
jobs: | ||
build: | ||
runs-on: ubuntu-latest | ||
steps: | ||
- uses: actions/checkout@v2 | ||
|
||
- name: Use Node.js | ||
uses: actions/setup-node@v1 | ||
with: | ||
node-version: '20.x' | ||
node-version: "20.x" | ||
|
||
- name: Cache Yarn packages | ||
uses: actions/cache@v2 | ||
with: | ||
path: '**/node_modules' | ||
path: "**/node_modules" | ||
key: ${{ runner.os }}-modules-${{ hashFiles('**/yarn.lock') }} | ||
- name: Install Deps | ||
|
||
- name: Install dependencies | ||
run: yarn && yarn yarn-audit-ci --high | ||
- name: Build Packages | ||
|
||
- name: Build packages | ||
run: yarn build | ||
|
||
- name: Build examples | ||
run: yarn build:examples | ||
|
||
- name: Lint | ||
run: yarn lint | ||
|
||
- name: Test | ||
run: yarn test | ||
env: | ||
CI: true | ||
BLOCKCHAIR_API_KEY: ${{ secrets.BLOCKCHAIR_API_KEY }} |
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,41 @@ | ||
name: Release workflow | ||
|
||
on: | ||
push: | ||
branches: | ||
- master | ||
|
||
concurrency: | ||
group: ${{ github.workflow }}-${{ github.ref }} | ||
cancel-in-progress: false | ||
|
||
jobs: | ||
release: | ||
name: Release | ||
runs-on: ubuntu-latest | ||
steps: | ||
- name: Checkout repo | ||
uses: actions/checkout@v2 | ||
|
||
- name: Setup Node.js 20.x | ||
uses: actions/setup-node@v2 | ||
with: | ||
node-version: 20.x | ||
|
||
- name: Install dependencies | ||
run: yarn install | ||
|
||
- name: Build packages | ||
run: yarn build | ||
|
||
- name: Test | ||
run: yarn test | ||
|
||
- name: Create release pull request or publish to npm | ||
uses: changesets/action@v1 | ||
with: | ||
version: yarn increase-packages | ||
publish: yarn changeset publish | ||
env: | ||
GITHUB_TOKEN: ${{ secrets.GITHUB_TOKEN }} | ||
NPM_TOKEN: ${{ secrets.NPM_TOKEN }} |
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
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,26 +1,28 @@ | ||
# v0.1.3 (2023-12-12) | ||
# Changelog | ||
|
||
## Update | ||
## v0.1.3 (2023-12-12) | ||
|
||
### Update | ||
|
||
- Client dependency increased to 0.16.0 | ||
- Evm client dependency increased to 0.4.3 | ||
- Evm providers dependency increased to 0.1.5 | ||
|
||
# v0.1.2 (2023-12-11) | ||
## v0.1.2 (2023-12-11) | ||
|
||
## Update | ||
### Update | ||
|
||
- Client and EVM client packages update | ||
|
||
# v0.1.1 (2023-11-16) | ||
## v0.1.1 (2023-11-16) | ||
|
||
## Update | ||
### Update | ||
|
||
- Created method getAddressAsync | ||
|
||
# v.0.1.0 (2022-10-13) | ||
## v.0.1.0 (2022-10-13) | ||
|
||
## Update | ||
### Update | ||
|
||
- Arbitrum package first release | ||
|
Oops, something went wrong.