Merge pull request #326 from KlimaDAO/tufnel/parentheses-fix #1457
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
# Continuously check builds on every push and pull request | |
name: Continuous Integration | |
on: [push, pull_request] | |
jobs: | |
compile: | |
runs-on: ubuntu-latest | |
name: Compile | |
strategy: | |
matrix: | |
value: | |
[ | |
'bonds', | |
'carbonmark', | |
'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 --immutable | |
working-directory: '${{ matrix.value }}' | |
# Generate code and check for uncommitted changes | |
# https://github.com/marketplace/actions/check-uncommitted-changes | |
- name: Prepare Manifest | |
if: matrix.value == 'polygon-digital-carbon' || matrix.value == 'carbonmark' | |
run: npm run prepare-matic | |
working-directory: '${{ matrix.value }}' | |
- 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 }}' | |
- name: Run Tests | |
if: matrix.value == 'polygon-digital-carbon' | |
run: npm run test | |
working-directory: '${{ matrix.value }}' |