-
Notifications
You must be signed in to change notification settings - Fork 0
89 lines (74 loc) · 2.53 KB
/
node-ci-workflow.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
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
# This workflow will build and test a Node.js project
name: Deploy to Firebase Functions via github action
on:
push:
branches: ["feature/*"]
pull_request:
branches: ["feature/*", "main"]
workflow_call:
jobs:
build:
runs-on: ubuntu-22.04
timeout-minutes: 5
permissions:
checks: write
pull-requests: write
steps:
- uses: actions/checkout@v4
- name: Set up Node v18
uses: actions/setup-node@v3
with:
node-version: '18'
- name: Install dependencies
working-directory: .
run: find ./* -maxdepth 2 -name package.json -execdir npm ci \;
- name: Lint with ESLint
run: DEBUG=eslint:cli-engine npx eslint .
- name: Test with 'ava' and 'nyc'
id: unit-tests-step
run: find ./* -maxdepth 2 -name ava.config.js -print0 | xargs --null -I {} npx nyc ava --tap | npx tap-junit > test.xml
- name: Publish test report
uses: mikepenz/action-junit-report@v4
if: success() || failure()
with:
report_paths: 'test.xml'
check_name: 'Test report'
require_passed_tests: true
detailed_summary: true
include_passed: true
- name: Generate test coverage report
id: unit-tests-cov-step
run: find ./* -maxdepth 1 -name package.json -print0 | xargs --null -I {} npx nyc report --reporter json-summary --reporter cobertura
- name: Publish test coverage report
uses: sidx1024/[email protected]
with:
coverage_file: "coverage/coverage-summary.json"
- name: Code Coverage Summary Report
uses: irongut/[email protected]
id: cov-report
with:
filename: coverage/cobertura-coverage.xml
badge: true
format: markdown
indicators: true
output: both
thresholds: '60 80'
- name: Add Coverage PR Comment
uses: marocchino/sticky-pull-request-comment@v2
# if: github.event_name == 'pull_request'
with:
recreate: true
path: code-coverage-results.md
- name: Add Coverage
id: test-id
run: |
cat code-coverage-results.md
- name: Add Coverage check
uses: LouisBrunner/[email protected]
if: always()
with:
token: ${{ secrets.GITHUB_TOKEN }}
name: Test coveragec
conclusion: ${{ job.status }}
output: |
{"summary":"${ cat code-coverage-results.md }"}