generated from AkashRajpurohit/ts-npm-template
-
-
Notifications
You must be signed in to change notification settings - Fork 0
60 lines (49 loc) · 1.51 KB
/
CI.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
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
name: CI ⚙️
on:
push:
workflow_dispatch:
permissions:
pull-requests: write
contents: write
issues: write
id-token: write
concurrency:
group: ${{ github.workflow }}-${{ github.ref }}
cancel-in-progress: true
jobs:
test:
runs-on: ubuntu-latest
steps:
- name: Checkout 🧳
uses: actions/checkout@v4
- name: Setup PNPM ⚙️
uses: AkashRajpurohit/.github/.github/actions/setup-pnpm@main
with:
node_version: 20
pnpm_version: 8
- name: Install dependencies ⏬
run: pnpm install --no-frozen-lockfile
- name: Test 🔫
run: pnpm run test:coverage
- name: Report Coverage 📝
if: always() # Also generate the report if tests are failing
uses: davelosert/vitest-coverage-report-action@v2
- name: Get Coverage for badge 🔢
run: |
COVERAGE="$(cat coverage/coverage-summary.json | jq -r '.total.lines.pct')"
echo "COVERAGE=$(echo ${COVERAGE})" >> $GITHUB_ENV
- name: Create coverage badge ✍🏽
uses: schneegans/[email protected]
with:
auth: ${{ secrets.GIST_SECRET }}
gistID: aa48c0038fbf37218a45f01d5f1467a3
filename: remark-add-query-param.json
label: Code Coverage
message: ${{ env.COVERAGE }}
color: green
namedLogo: vitest
- name: Upload Test Results ⏫
uses: actions/upload-artifact@v4
with:
name: coverage
path: coverage/