Skip to content

feat: add prop to include deep nesting #372

feat: add prop to include deep nesting

feat: add prop to include deep nesting #372

Workflow file for this run

name: Build
on: [push, pull_request]
jobs:
coverage:
runs-on: ubuntu-latest
name: Code Climate Coverage
steps:
- name: Checkout repository
uses: actions/checkout@v2
- name: Installing Dependencies
run: npm ci
- name: Collecting Coverage
uses: paambaati/codeclimate-action@v2.6.0
env:
CC_TEST_REPORTER_ID: ${{ secrets.CODE_CLIMATE_TOKEN }}
with:
coverageCommand: npm run coverage
coverageLocations: |
${{github.workspace}}/coverage/lcov.info:lcov
build:
runs-on: ubuntu-latest
strategy:
matrix:
node: ['14', '12', '10', '8']
name: Node ${{ matrix.node }}
steps:
- name: Checkout repository
uses: actions/checkout@v2
- name: Installing Dependencies
run: npm ci
- name: Linting Codebase
run: npm run lint
- name: Unit Testing
run: npm run test
- name: Building Artefacts
run: npm run build