-
Notifications
You must be signed in to change notification settings - Fork 4
32 lines (28 loc) · 1022 Bytes
/
main.yml
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
name: CI
on: [push]
jobs:
build:
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@v1
- name: Install and build
run: yarn
- name: Run Tests
run: yarn test >> coverage.txt
- name: Extract coverage percentage
id: extract_coverage
run: |
# Extract the "Statements" percentage from the Coverage summary
COVERAGE=$(awk '/Statements/ {print $3}' coverage.txt | tr -d '%')
echo "COVERAGE=$COVERAGE" >> $GITHUB_ENV
- name: Create coverage badge
run: |
curl -X POST -d '{"schemaVersion": 1, "label": "coverage", "message": "'"${{ env.COVERAGE }}"'%'", "color": "brightgreen"}' https://img.shields.io/endpoint > coverage-badge.json
- name: Commit coverage badge
run: |
git config --global user.name 'GitHub Action'
git config --global user.email 'action@github.com'
mv coverage-badge.json ./coverage.json
git add coverage.json
git commit -m "Update coverage badge"
git push