Disregard transfer and retirement events with zero value #70
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: Continuous Integration | |
on: [push, pull_request] | |
jobs: | |
compile: | |
runs-on: ubuntu-latest | |
name: Compile | |
strategy: | |
matrix: | |
value: | |
[ | |
'bonds', | |
'protocol-metrics', | |
'vesting', | |
'user-carbon', | |
'pairs', | |
'celo-bridged-carbon', | |
'ethereum-bridged-carbon', | |
'polygon-bridged-carbon', | |
'polygon-digital-carbon', | |
] | |
steps: | |
- name: Check out source repository | |
uses: actions/checkout@v2 | |
- name: Setup Node | |
uses: actions/setup-node@v2 | |
with: | |
node-version: '16' | |
- name: Install dependencies | |
run: yarn --frozen-lockfile | |
working-directory: '${{ matrix.value }}' | |
# Generate code and check for uncommitted changes | |
# https://github.com/marketplace/actions/check-uncommitted-changes | |
- name: Generate Subgraph Code | |
run: npm run codegen | |
working-directory: '${{ matrix.value }}' | |
- name: Check for uncommitted changes | |
id: check-changes | |
uses: mskri/check-uncommitted-changes-action@v1.0.1 | |
- name: Evaluate if there are changes | |
if: steps.check-changes.outputs.outcome == failure() | |
run: echo "There are uncommitted changes - execute 'npm run codegen' locally and commit the generated files!" | |
- name: Build Subgraph | |
run: npm run build | |
working-directory: '${{ matrix.value }}' | |
# TODO: add matchstick test suite | |
# - name: Run Tests | |
# run: npm run test | |
# working-directory: "${{ matrix.value }}" |