Ecosyste.ms: Awesome
An open API service indexing awesome lists of open source software.
https://github.com/odanado/coverage-history-action
https://github.com/odanado/coverage-history-action
coverage github-actions
Last synced: about 1 month ago
JSON representation
- Host: GitHub
- URL: https://github.com/odanado/coverage-history-action
- Owner: odanado
- License: mit
- Created: 2020-05-22T10:52:42.000Z (over 4 years ago)
- Default Branch: master
- Last Pushed: 2023-01-05T20:31:24.000Z (almost 2 years ago)
- Last Synced: 2024-10-27T13:28:48.290Z (about 2 months ago)
- Topics: coverage, github-actions
- Language: TypeScript
- Size: 1.51 MB
- Stars: 4
- Watchers: 3
- Forks: 0
- Open Issues: 15
-
Metadata Files:
- Readme: README.md
- License: LICENSE
Awesome Lists containing this project
README
# Coverage History Action
![](https://github.com/odanado/coverage-history-action/workflows/CI/badge.svg)
This GitHub Actions notice coverage history in pull request comments.
![](./images/sample.png)
# Usage
```yml
name: CIon:
push:
branches:
- "master"
pull_request:
types: [opened, synchronize]jobs:
report:
runs-on: ubuntu-lateststeps:
- uses: actions/checkout@v2
- name: Use Node.js 12.x
uses: actions/setup-node@v1
with:
node-version: 12.x
- name: yarn install
run: |
yarn install --frozen-lockfile
env:
CI: true
- name: Run test
run: |
yarn test
env:
CI: true
- name: Coverage History Action
uses: odanado/coverage-history-action@v0
with:
github-token: ${{ secrets.GITHUB_TOKEN }}
```