ON-553: refactor remove helpers #34
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: Build | |
on: | |
push: | |
branches: | |
- qa | |
jobs: | |
build_test_deploy: | |
runs-on: ubuntu-latest | |
steps: | |
- name: Checkout Repository | |
uses: actions/checkout@v3 | |
- name: Use Node.js | |
uses: actions/setup-node@v3 | |
with: | |
cache: npm | |
node-version: 18 | |
registry-url: 'https://npm.pkg.github.com' | |
scope: '@oriumnetwork' | |
- name: Install Dependencies | |
run: npm ci | |
env: | |
NODE_AUTH_TOKEN: ${{ secrets.GHB_TOKEN }} | |
- name: Lint | |
run: npm run lint | |
- name: Test | |
run: npm run test | |
- name: Build Mumbai | |
run: npm run build:mumbai | |
- name: Build Cronos | |
run: npm run build:cronos-mainnet | |
- name: Deploy Self-hosted Cronos QA | |
run: npx graph deploy --node ${{ secrets.SELF_HOSTED_SUBGRAPH_URL }} --version-label qa cronos-mainnet_qa_nft-roles | |
- name: Build Polygon | |
run: npm run build:polygon | |
- name: Delete Satsuma Polygon QA | |
run: | | |
curl -X DELETE https://subgraphs.alchemy.com/api/subgraphs/8c268d3e8b83112a7d0c732a9b88ba1c732da600bffaf68790171b9a0b5d5394/polygon-roles-registry/qa/delete -H 'x-api-key: ${{ secrets.SATSUMA_DEPLOY_KEY }}' | |
- name: Deploy Satsuma Polygon QA | |
run: npx graph deploy polygon-roles-registry --version-label qa --node https://subgraphs.alchemy.com/api/subgraphs/deploy --ipfs https://ipfs.satsuma.xyz --deploy-key ${{ secrets.SATSUMA_DEPLOY_KEY }} |