Skip to content

Feature/sc-46253/sdk-table-pagination #95

Feature/sc-46253/sdk-table-pagination

Feature/sc-46253/sdk-table-pagination #95

Workflow file for this run

name: api-client coverage
on:
pull_request:
paths:
- 'packages/api-client/**'
push:
branches:
- main
jobs:
build:
name: Get api client test coverage on node ${{ matrix.node }} and ${{ matrix.os }}
runs-on: ${{ matrix.os }}
strategy:
matrix:
node: ["18.x", "20.x"]
os: [ubuntu-latest]
steps:
- name: Checkout repo
uses: actions/checkout@v2
- name: Use Node ${{ matrix.node }}
uses: actions/setup-node@v1
with:
node-version: ${{ matrix.node }}
- name: Install
run: npm ci
working-directory: ./packages/api-client
- name: test
run: npm run test
working-directory: ./packages/api-client
- name: Coverage
run: npm run test:coverage
working-directory: ./packages/api-client
- name: Comment
uses: romeovs/lcov-reporter-action@v0.2.19
with:
github-token: ${{ secrets.GITHUB_TOKEN }}
lcov-file: ./packages/api-client/coverage/lcov.info