feat: update to pass credits/time nft contract address as parameter #346
Workflow file for this run
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
name: Testing | |
on: [push] | |
jobs: | |
build: | |
runs-on: ubuntu-latest | |
steps: | |
- name: Reclaim some disk space | |
run: docker system prune --all --volumes -f | |
- uses: actions/checkout@v3 | |
- uses: actions/setup-node@v3 | |
with: | |
node-version: 18 | |
- name: Install dependencies | |
run: | | |
yarn | |
- name: Run linters | |
run: yarn lint | |
- uses: nevermined-io/nvm-tools-actions@v0.15.0 | |
with: | |
token: ${{ secrets.API_TOKEN_GITHUB }} | |
opengsn: 'true' | |
estuary: 'true' | |
contracts-version: 'v3.5.7' | |
node-version: 'latest' | |
- name: Check artifacts and circuits | |
run: | | |
nvm-tools copy-artifacts /tmp/.nevermined/artifacts | |
ls -l /tmp/.nevermined/artifacts/ready | |
nvm-tools copy-circuits /tmp/.nevermined/circuits | |
ls -l /tmp/.nevermined/circuits/keytransfer.wasm | |
- name: Build | |
run: | | |
yarn build | |
yarn start --help | |
- name: Run integration tests | |
env: | |
SEED_WORDS: ${{ secrets.TEST_MNEMONIC }} | |
INFURA_TOKEN: ${{ secrets.INFURA_TOKEN }} | |
IPFS_PROJECT_ID: ${{ secrets.IPFS_PROJECT_ID }} | |
IPFS_PROJECT_SECRET: ${{ secrets.IPFS_PROJECT_SECRET }} | |
LOCAL_CONF_DIR: '/tmp/.nevermined' | |
TOKEN_ADDRESS: '0x0000000000000000000000000000000000000000' | |
WEB3_PROVIDER_URL: 'http://contracts.nevermined.localnet' | |
NETWORK: 'geth-localnet' | |
run: | | |
yarn test:integration | |
- name: Upload logs | |
uses: actions/upload-artifact@v3 | |
if: failure() | |
with: | |
name: nevermined-tools-output | |
path: tools/nevermined_tools.txt |