-
Notifications
You must be signed in to change notification settings - Fork 77
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Convert repo to monorepo using npm workspaces and introduce web3-uti…
…ls project (#481) * Convert repo to monorepo using npm workspaces and introduce web3-utils project
- Loading branch information
Showing
155 changed files
with
14,931 additions
and
14,692 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 |
---|---|---|
@@ -1,9 +1,9 @@ | ||
module.exports = { | ||
extends: ['@massalabs'], | ||
extends: ["@massalabs"], | ||
rules: { | ||
'tsdoc/syntax': 'warn', | ||
'max-len': ['error', 200], | ||
camelcase: 'off', | ||
'@typescript-eslint/no-unused-vars': 'error', | ||
"tsdoc/syntax": "warn", | ||
"max-len": ["error", 200], | ||
camelcase: "off", | ||
"@typescript-eslint/no-unused-vars": "error", | ||
}, | ||
}; |
This file was deleted.
Oops, something went wrong.
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 was deleted.
Oops, something went wrong.
This file was deleted.
Oops, something went wrong.
This file was deleted.
Oops, something went wrong.
21 changes: 21 additions & 0 deletions
21
.github/workflows/workspace-check-formatting-and-run-tests.yml
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,21 @@ | ||
name: (workspace) Check Formatting and Run Tests | ||
|
||
on: | ||
push: | ||
workflow_call: | ||
|
||
jobs: | ||
build: | ||
runs-on: ubuntu-latest | ||
|
||
steps: | ||
- uses: actions/checkout@v3 | ||
- name: Use Node.js 18 | ||
uses: actions/setup-node@v3 | ||
with: | ||
node-version: 18 | ||
cache: "npm" | ||
- run: npm ci | ||
- run: npm run build | ||
- run: npm run fmt:check | ||
- run: npm 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 |
---|---|---|
@@ -0,0 +1,76 @@ | ||
name: (workspace) Coverage | ||
|
||
on: | ||
push: | ||
branches: [main, buildnet] | ||
|
||
jobs: | ||
build: | ||
strategy: | ||
matrix: | ||
project: [massa-web3, web3-utils] | ||
|
||
runs-on: ubuntu-latest | ||
|
||
permissions: | ||
# Give the default GITHUB_TOKEN write permission to commit and push the changed files back to the repository. | ||
contents: write | ||
|
||
steps: | ||
- name: Checkout code | ||
uses: actions/checkout@v3 | ||
with: | ||
# https://github.com/actions/checkout/issues/298#issuecomment-664976337 | ||
ref: ${{ github.head_ref }} | ||
# Checkout code using massabot account | ||
token: ${{ secrets.MASSABOTCLASSIC || github.token }} | ||
|
||
- name: Use Node.js | ||
uses: actions/setup-node@v3 | ||
with: | ||
node-version: 18.x | ||
cache: "npm" | ||
|
||
- name: Install Protoc | ||
uses: arduino/setup-protoc@v1 | ||
|
||
- name: Install dependencies | ||
run: | | ||
npm ci | ||
working-directory: ./ | ||
|
||
- name: Build workspace | ||
run: | | ||
npm run build | ||
working-directory: ./ | ||
|
||
- name: allow access to coverage.sh | ||
run: chmod +x ./scripts/coverage.sh | ||
shell: bash | ||
|
||
- name: Extract coverage | ||
id: coverage | ||
run: | | ||
value=$(npm run test:cov -w @massalabs/${{ matrix.project }} | awk '/All files/ {print $10}' | tr -d '%') | ||
echo "coverage=$value" >> $GITHUB_OUTPUT | ||
- name: Add test coverage to README | ||
run: ./scripts/coverage.sh | ||
shell: bash | ||
env: | ||
COVERAGE: ${{ steps.coverage.outputs.coverage }} | ||
PROJECT: ${{ matrix.project }} | ||
|
||
- name: Check if coverage changed | ||
id: check_coverage_changed | ||
run: | | ||
echo "::set-output name=coverage_changed::$(git diff --name-only README.md | grep -E '^README.md$')" | ||
- name: Commit changes | ||
uses: stefanzweifel/git-auto-commit-action@v4 | ||
if: ${{ steps.check_coverage_changed.outputs.coverage_changed != '' }} | ||
with: | ||
commit_message: "Generate coverage badge" | ||
file_pattern: "README.md" | ||
# Commit code using massabot account that can bypass push and MR restriction | ||
commit_author: massabot <[email protected]> |
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,28 @@ | ||
name: (workspace) Deploy documentation | ||
|
||
on: | ||
push: | ||
tags: | ||
- v* | ||
|
||
jobs: | ||
deploy-typedoc: | ||
runs-on: ubuntu-latest | ||
steps: | ||
- uses: actions/checkout@v3 | ||
- uses: actions/setup-node@v3 | ||
with: | ||
node-version: 18 | ||
- name: Generate doc | ||
run: | | ||
npm ci | ||
npm run doc | ||
mv docs/documentation/html massa-web3 | ||
- name: Deploy files | ||
uses: appleboy/scp-action@master | ||
with: | ||
host: ${{ secrets.MASSANET_HOST }} | ||
username: ${{ secrets.MASSANET_USERNAME }} | ||
key: ${{ secrets.MASSANET_SSHKEY }} | ||
source: "./massa-web3" | ||
target: "/var/www/type-doc" |
Oops, something went wrong.