Skip to content

Commit

Permalink
Merge branch 'main' into allow-custom-net
Browse files Browse the repository at this point in the history
  • Loading branch information
davidecarpini authored Aug 19, 2024
2 parents 21ba397 + 4471337 commit 01946cb
Show file tree
Hide file tree
Showing 8 changed files with 46 additions and 4 deletions.
27 changes: 27 additions & 0 deletions .github/workflows/sonar-scan.yml
Original file line number Diff line number Diff line change
@@ -0,0 +1,27 @@
name: PR Sonar Scan

on:
push:
branches:
- main
pull_request:

jobs:
sonar-scan:
name: Sonar Scan
runs-on: ubuntu-latest
steps:
- name: Checkout repository
uses: actions/checkout@v3
with:
fetch-depth: 0

- name: SonarCloud Scan
uses: sonarsource/sonarcloud-github-action@master
env:
GITHUB_TOKEN: ${{ secrets.GITHUB_TOKEN }}
SONAR_TOKEN: ${{ secrets.SONAR_TOKEN }}
with:
args: >
-Dsonar.verbose=false
-Dsonar.branch.name=${{ github.head_ref || github.ref_name }}
1 change: 1 addition & 0 deletions .gitignore
Original file line number Diff line number Diff line change
Expand Up @@ -38,4 +38,5 @@ yarn-error.log*
.vscode
.parcel-cache

veworld-dist
.reports
2 changes: 1 addition & 1 deletion examples/sample-remix-app/package.json
Original file line number Diff line number Diff line change
Expand Up @@ -16,7 +16,7 @@
"@remix-run/node": "^2.8.1",
"@remix-run/react": "^2.8.1",
"@remix-run/serve": "^2.8.1",
"@vechain/dapp-kit-react": "^1.0.12",
"@vechain/dapp-kit-react": "*",
"buffer": "^6.0.3",
"isbot": "^4.1.0",
"react": "^18.2.0",
Expand Down
2 changes: 1 addition & 1 deletion packages/dapp-kit-react/package.json
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
{
"name": "@vechain/dapp-kit-react",
"version": "1.0.11",
"version": "1.0.13",
"private": false,
"homepage": "https://github.com/vechain/vechain-dapp-kit",
"repository": "github:vechain/vechain-dapp-kit",
Expand Down
2 changes: 1 addition & 1 deletion packages/dapp-kit-ui/package.json
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
{
"name": "@vechain/dapp-kit-ui",
"version": "1.0.11",
"version": "1.0.13",
"private": false,
"description": "Vanilla JS DAppKit",
"keywords": [
Expand Down
2 changes: 1 addition & 1 deletion packages/dapp-kit/package.json
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
{
"name": "@vechain/dapp-kit",
"version": "1.0.11",
"version": "1.0.13",
"private": false,
"homepage": "https://github.com/vechain/vechain-dapp-kit",
"repository": "github:vechain/vechain-dapp-kit",
Expand Down
13 changes: 13 additions & 0 deletions sonar-project.properties
Original file line number Diff line number Diff line change
@@ -0,0 +1,13 @@
sonar.projectKey=vechain_vechain-dapp-kit
sonar.organization=vechain

# This is the name and version displayed in the SonarCloud UI.
#sonar.projectName=vechain-dapp-kit
#sonar.projectVersion=1.0


# Path is relative to the sonar-project.properties file. Replace "\" by "/" on Windows.
#sonar.sources=.

# Encoding of the source code. Default is default system encoding
#sonar.sourceEncoding=UTF-8
1 change: 1 addition & 0 deletions tests/e2e/package.json
Original file line number Diff line number Diff line change
@@ -1,6 +1,7 @@
{
"name": "e2e",
"version": "1.0.0",
"private": true,
"description": "",
"license": "ISC",
"author": "",
Expand Down

0 comments on commit 01946cb

Please sign in to comment.