-
Notifications
You must be signed in to change notification settings - Fork 773
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
* Readme package renaming * account: renaming package * block: Migrating to scoped packages * npm package URL * block: updating dependencies to scoped packages * blockchain: migrating to scoped packages * common: migrating to scoped packages * tx: migrating to scoped packages * vm: migrating to scoped packages * account,block: updating badges * vm: updating patch to scoped packages * fix: updating new occurrences of package names * fix: updating new occurrences of package names * fix: rebase re-touching * ci: updating Block ci file
- Loading branch information
1 parent
83fcc18
commit de9c2b7
Showing
74 changed files
with
417 additions
and
205 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
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
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,34 @@ | ||
name: Tx | ||
'on': | ||
push: | ||
branches: | ||
- master | ||
tags: | ||
- '*' | ||
paths-ignore: | ||
- packages/account/** | ||
- packages/common/** | ||
pull_request: | ||
types: [opened, reopened, synchronize] | ||
paths-ignore: | ||
- packages/account/** | ||
- packages/common/** | ||
jobs: | ||
test-tx: | ||
runs-on: ubuntu-latest | ||
strategy: | ||
matrix: | ||
node-version: [10.x, 12.x, 13.x, 14.x] | ||
steps: | ||
- name: 'Use Node.js ${{ matrix.node-version }}' | ||
uses: actions/setup-node@v1 | ||
with: | ||
node-version: '${{ matrix.node-version }}' | ||
- uses: actions/checkout@v1 | ||
- run: npx lerna bootstrap --scope @ethereumjs/tx --ignore-scripts --include-dependencies --no-ci | ||
- run: npx lerna run build --scope @ethereumjs/tx --include-dependencies | ||
- run: npx lerna run lint --scope @ethereumjs/tx | ||
- run: npx lerna run test:node --scope @ethereumjs/tx | ||
- run: npx lerna run test:browser --scope @ethereumjs/tx | ||
env: | ||
cwd: '${{github.workspace}}/packages/tx' |
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.