Skip to content
This repository has been archived by the owner on Apr 13, 2023. It is now read-only.

docs: Update README.md with deprecation message #795

docs: Update README.md with deprecation message

docs: Update README.md with deprecation message #795

Workflow file for this run

#
# Copyright Amazon.com, Inc. or its affiliates. All Rights Reserved.
# SPDX-License-Identifier: Apache-2.0
#
name: Code Coverage Report
on:
pull_request:
branches:
- develop
- smart-develop
push:
branches:
- develop
- smart-develop
jobs:
report-test-coverage:
runs-on: ubuntu-latest
strategy:
matrix:
node-version: [14.x]
steps:
- name: Checkout repository
uses: actions/checkout@v2
with:
fetch-depth: 2
- name: Set up Node.js ${{ matrix.node-version }}
uses: actions/setup-node@v1
with:
node-version: ${{ matrix.node-version }}
- name: Install dependencies
run: yarn install
- name: Run tests
run: yarn test-coverage
- name: Upload coverage to Codecov
uses: codecov/codecov-action@v1