-
Notifications
You must be signed in to change notification settings - Fork 8
72 lines (67 loc) · 1.92 KB
/
quality.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
name: Quality
on:
pull_request:
branches:
- master
jobs:
build_components:
name: Install Dependencies
runs-on: ubuntu-latest
steps:
- name: Check out source code
uses: actions/checkout@v3
- name: Set up node
uses: actions/setup-node@v1
with:
node-version: '18.18'
- name: use cache
uses: actions/cache@v2
with:
path: '**/node_modules'
key: ${{ runner.os }}-modules-${{ hashFiles('**/deps.lock') }}
- name: Install Components dependencies
run: |
cd packages/ui
npm install
- name: Install Components dependencies
run: |
cd packages/ui
npm install
npm run build
cd ../../storybook
npm install
coverage:
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@v3
- uses: ArtiomTr/jest-coverage-report-action@v2
id: coverage
with:
working-directory: packages/ui
test-script: npm run coverage:changed
output: report-markdown
- uses: marocchino/sticky-pull-request-comment@v2
with:
header: PR Coverage
message: ${{ steps.coverage.outputs.report }}
tests:
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@v3
- name: Install modules
run: |
cd packages/ui
npm i
- name: Run tests
id: tests
run: |
cd packages/ui
echo " " >> results.log
echo "## Project Coverage and Test" >> results.log
echo "" >> results.log
echo "`npm run test:github 2>&1 | sed 's/=//g' | tail -n 11`" >> results.log
echo " " >> results.log
- uses: marocchino/sticky-pull-request-comment@v2
with:
header: Project Coverage and Test
path: packages/ui/results.log