-
Notifications
You must be signed in to change notification settings - Fork 2
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Merge branch 'main' into dependabot/npm_and_yarn/jsonwebtoken-9.0.0
- Loading branch information
Showing
59 changed files
with
3,659 additions
and
1,896 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 @@ | ||
{ "extends": ["@commitlint/config-conventional"] } |
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,8 +1,6 @@ | ||
{ | ||
"extends": [ | ||
"nevermined" | ||
], | ||
"extends": ["nevermined"], | ||
"rules": { | ||
"@next/next/no-html-link-for-pages": "off" | ||
} | ||
} | ||
} |
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 |
---|---|---|
@@ -1,6 +1,7 @@ | ||
version: 2 | ||
updates: | ||
- package-ecosystem: 'npm' | ||
target-branch: 'develop' | ||
directory: '/' | ||
schedule: | ||
interval: 'weekly' | ||
interval: 'weekly' |
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 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
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,51 @@ | ||
name: Integration Tests | ||
|
||
on: [push] | ||
|
||
jobs: | ||
build: | ||
runs-on: ubuntu-latest | ||
|
||
steps: | ||
- uses: actions/checkout@v3 | ||
- uses: actions/setup-node@v3 | ||
with: | ||
node-version: '16.x' | ||
- name: Install dependencies | ||
run: | | ||
yarn | ||
- name: Compile and lint | ||
run: | | ||
yarn run build | ||
yarn run lint | ||
- name: Check code formatting | ||
run: yarn format:check | ||
- uses: nevermined-io/[email protected] | ||
with: | ||
token: ${{ secrets.API_TOKEN_GITHUB }} | ||
opengsn: 'false' | ||
estuary: 'true' | ||
node: 'false' | ||
- name: Check artifacts | ||
run: | | ||
nvm-tools copy-artifacts ./artifacts | ||
ls -l artifacts | ||
nvm-tools copy-circuits ./circuits | ||
ls -l circuits | ||
- name: Run tests | ||
run: | | ||
export PROVIDER_KEYFILE=accounts/provider.json | ||
export RSA_PRIVKEY_FILE=accounts/rsa_priv_key.pem | ||
export RSA_PUBKEY_FILE=accounts/rsa_pub_key.pem | ||
export PROVIDER_BABYJUB_SECRET=${{ secrets.PROVIDER_BABYJUB_SECRET }} | ||
export BUYER_BABYJUB_SECRET=${{ secrets.BUYER_BABYJUB_SECRET }} | ||
export PROVIDER_BABYJUB_PUBLIC1=${{ secrets.PROVIDER_BABYJUB_PUBLIC1 }} | ||
export PROVIDER_BABYJUB_PUBLIC2=${{ secrets.PROVIDER_BABYJUB_PUBLIC2 }} | ||
export BUYER_BABYJUB_PUBLIC1=${{ secrets.BUYER_BABYJUB_PUBLIC1 }} | ||
export BUYER_BABYJUB_PUBLIC2=${{ secrets.BUYER_BABYJUB_PUBLIC2 }} | ||
export NO_GRAPH=true | ||
export SEED_WORDS=${{ secrets.seedWords }} | ||
export PROVIDER_PASSWORD=secret | ||
yarn run setup:dev | ||
# HDWalletProvider keeps jest from exiting | ||
yarn run integration:cov -- --forceExit |
Oops, something went wrong.