-
Notifications
You must be signed in to change notification settings - Fork 32
75 lines (60 loc) · 1.66 KB
/
pull_request.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
name: 'Pull Request'
on: ['pull_request']
concurrency:
group: pr-common-${{ github.event.pull_request.number }}
cancel-in-progress: true
jobs:
linters:
runs-on: ubuntu-latest
name: Run linters
steps:
- name: Checkout
uses: actions/checkout@v3
- name: Setting up the repository environment
uses: ./.github/actions/setup
- name: Build packages
run: yarn run build
- name: Run lint:ci command
run: yarn run lint:ci
- name: Upload lint scripts artifact
uses: actions/upload-artifact@v3
if: always()
with:
name: lint-scripts-output
path: lint-results.json
test:
runs-on: ubuntu-latest
name: Run unit tests
steps:
- name: Checkout
uses: actions/checkout@v3
- name: Setting up the repository environment
uses: ./.github/actions/setup
- name: Build packages
run: yarn run build
- name: Run tests for the specified workspace
run: yarn run test:ci
- name: Upload test artifact
uses: actions/upload-artifact@v3
if: always()
with:
name: test-output
path: test-results.json
report_ci:
if: ${{ always() }}
needs:
- linters
- test
runs-on: ubuntu-latest
name: Report CI results
steps:
- name: Download lint scripts artifact
uses: actions/download-artifact@v4
with:
name: lint-scripts-output
- name: Download test artifact
uses: actions/download-artifact@v4
with:
name: test-output
- name: Push reports
uses: VKCOM/gh-actions/VKUI/reporter@main