-
Notifications
You must be signed in to change notification settings - Fork 7
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Merge pull request #111 from skalenetwork/bridge-v2
SKALE Portal - new Bridge architecture, Vite builder, metaport v2
- Loading branch information
Showing
676 changed files
with
4,911 additions
and
28,808 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,25 @@ | ||
module.exports = { | ||
env: { | ||
browser: true, | ||
es2021: true, | ||
}, | ||
extends: [ | ||
'plugin:react/recommended', | ||
'standard-with-typescript', | ||
'prettier', | ||
'plugin:storybook/recommended' | ||
], | ||
overrides: [], | ||
parserOptions: { | ||
ecmaVersion: 'latest', | ||
sourceType: 'module', | ||
}, | ||
plugins: ['react'], | ||
rules: { | ||
'react/jsx-key': 'off', | ||
'react/react-in-jsx-scope': 'off', | ||
'no-unused-vars': 'off', | ||
'@typescript-eslint/no-unused-vars': 'warn', | ||
'no-console': 'warn', | ||
}, | ||
} |
Validating CODEOWNERS rules …
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,3 @@ | ||
* @dmytrotkk | ||
*.md @skalenetwork/docowners | ||
/docs/ @skalenetwork/docowners |
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,37 @@ | ||
name: "cla" | ||
on: | ||
issue_comment: | ||
types: [created] | ||
pull_request_target: | ||
types: [opened, closed, synchronize] | ||
|
||
jobs: | ||
cla: | ||
runs-on: ubuntu-latest | ||
steps: | ||
- name: "Get Team Members" | ||
id: team | ||
# github-script, v6.1.0 | ||
uses: actions/github-script@7a5c598405937d486b0331594b5da2b14db670da | ||
with: | ||
github-token: ${{ secrets.PERSONAL_ACCESS_TOKEN }} | ||
result-encoding: string | ||
script: | | ||
const members = await github.paginate( | ||
github.rest.orgs.listMembers, | ||
{ org: "skalenetwork" }, | ||
); | ||
return members.map(m => m.login).join(","); | ||
- name: "CLA Assistant" | ||
if: (github.event.comment.body == 'recheck' || github.event.comment.body == 'I have read the CLA Document and I hereby sign the CLA') || github.event_name == 'pull_request_target' | ||
# Beta Release, v2.1.3-beta | ||
uses: cla-assistant/github-action@ba066dbae3769e2ce93ec8cfc4fdc51b9db628ba | ||
env: | ||
GITHUB_TOKEN: ${{ secrets.GITHUB_TOKEN }} | ||
PERSONAL_ACCESS_TOKEN : ${{ secrets.PERSONAL_ACCESS_TOKEN }} | ||
with: | ||
path-to-signatures: 'signatures/version1/cla.json' | ||
path-to-document: 'https://skale.space/cla-txt' | ||
remote-organization-name: 'skalenetwork' | ||
remote-repository-name: cla-sigs | ||
allowlist: '${{ steps.team.outputs.result }},*[bot]' |
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,19 @@ | ||
name: Get linked issues | ||
on: | ||
pull_request: | ||
types: [ edited, synchronize, opened, reopened ] | ||
|
||
jobs: | ||
check-linked-issues: | ||
name: Check if pull request has linked issues | ||
runs-on: ubuntu-latest | ||
steps: | ||
- name: Get issues | ||
id: get-issues | ||
uses: mondeja/pr-linked-issues-action@v2 | ||
env: | ||
GITHUB_TOKEN: ${{ secrets.PERSONAL_ACCESS_TOKEN }} | ||
- name: PR has not linked issues | ||
if: join(steps.get-issues.outputs.issues) == '' | ||
run: | ||
exit 1 |
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,48 @@ | ||
name: Build and publish | ||
on: | ||
pull_request: | ||
types: [closed] | ||
branches: | ||
- develop | ||
- beta | ||
- stable | ||
|
||
jobs: | ||
build: | ||
if: github.event.pull_request.merged | ||
runs-on: ubuntu-latest | ||
steps: | ||
- uses: actions/checkout@v2 | ||
with: | ||
submodules: true | ||
- uses: actions/setup-node@v3 | ||
with: | ||
node-version: '18.x' | ||
registry-url: 'https://registry.npmjs.org' | ||
- name: Set version and branch | ||
run: | | ||
export BRANCH=${GITHUB_REF##*/} | ||
export VERSION=$(npm run --silent version) | ||
echo "Branch: $BRANCH" | ||
echo "Base version: $VERSION" | ||
export VERSION=$(bash ./helper-scripts/calculate_version.sh) | ||
echo "VERSION=$VERSION" >> $GITHUB_ENV | ||
echo "BRANCH=$BRANCH" >> $GITHUB_ENV | ||
echo "Version $VERSION" | ||
- name: Set release | ||
run: | | ||
if [[ "$BRANCH" == "stable" ]]; then | ||
export PRERELEASE=false | ||
else | ||
export PRERELEASE=true | ||
fi | ||
echo "PRERELEASE=$PRERELEASE" >> $GITHUB_ENV | ||
- name: Create Release | ||
uses: actions/create-release@v1 | ||
env: | ||
GITHUB_TOKEN: ${{ secrets.GITHUB_TOKEN }} | ||
with: | ||
tag_name: ${{ env.VERSION }} | ||
release_name: ${{ env.VERSION }} | ||
draft: false | ||
prerelease: ${{ env.PRERELEASE }} |
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,3 +1,7 @@ | ||
[submodule "skale-network"] | ||
path = skale-network | ||
url = https://github.com/skalenetwork/skale-network.git | ||
branch = add-additional-metadata | ||
[submodule "helper-scripts"] | ||
path = helper-scripts | ||
url = https://github.com/skalenetwork/helper-scripts.git |
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,8 @@ | ||
{ | ||
"semi": false, | ||
"trailingComma": "none", | ||
"singleQuote": true, | ||
"printWidth": 100, | ||
"endOfLine": "auto", | ||
"bracketSpacing": true | ||
} |
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.
Oops, something went wrong.