Skip to content

chore(sdk): Add unit tests for the subgraph calls on the SDK #1222

chore(sdk): Add unit tests for the subgraph calls on the SDK

chore(sdk): Add unit tests for the subgraph calls on the SDK #1222

Workflow file for this run

name: SDK
on:
pull_request:
branches:
- main
- dev
- release/*
push:
branches:
- main
- dev
- release/*
jobs:
test-sdk:
runs-on: ubuntu-latest
defaults:
run:
working-directory: sdk
steps:
- name: Check out the repo
uses: actions/checkout@v3
- id: check-changes
run: |
if [ -n "$(git diff --name-only ${{ github.event.pull_request.base.sha }} ${{ github.event.pull_request.head.sha }} | grep '^sdk/')" ]; then
echo "::set-output name=changed::true"
else
echo "::set-output name=changed::false"
fi
- name: Install Pnpm
uses: pnpm/action-setup@v2
with:
version: 9
run_install: false
- name: Install Node.js
uses: actions/setup-node@v3
with:
node-version: 18
cache: pnpm
- name: Get pnpm store directory
shell: bash
run: |
echo "STORE_PATH=$(pnpm store path --silent)" >> $GITHUB_ENV
- uses: actions/cache@v3
name: Setup pnpm cache
with:
path: ${{ env.STORE_PATH }}
key: ${{ runner.os }}-pnpm-store-${{ hashFiles('**/pnpm-lock.yaml') }}
restore-keys: |
${{ runner.os }}-pnpm-store-
- name: Install dependencies
run: pnpm install --frozen-lockfile
- name: Run the unit tests
run: pnpm run test:unit:coverage
- name: Move the report at the root of the project
if: steps.check-changes.outputs.changed == 'true'
run: mv sdk/coverage/lcov.info .
- name: Upload coverage report to Codecov
if: steps.check-changes.outputs.changed == 'true'
uses: codecov/codecov-action@v3
with:
files: ./lcov.info
token: ${{ secrets.CODECOV_TOKEN }}
fail_ci_if_error: true
verbose: true
- name: Check test coverage
if: steps.check-changes.outputs.changed == 'true'
uses: terencetcf/github-actions-lcov-minimum-coverage-checker@v1
with:
coverage-file: lcov.info
minimum-coverage: 50
- name: Add coverage summary
if: steps.check-changes.outputs.changed == 'true'
run: |
echo "## Coverage result" >> $GITHUB_STEP_SUMMARY
echo "✅ Uploaded to Codecov" >> $GITHUB_STEP_SUMMARY
- name: Add coverage summary
if: steps.check-changes.outputs.changed == 'false'
run: |
echo "## Coverage result" >> $GITHUB_STEP_SUMMARY
echo "✅ No coverage report to upload" >> $GITHUB_STEP_SUMMARY
- name: Run the integration tests
run: pnpm run test:integration:ci
- name: Add test summary
run: |
echo "## Tests result" >> $GITHUB_STEP_SUMMARY
echo "✅ Passed" >> $GITHUB_STEP_SUMMARY