-
Notifications
You must be signed in to change notification settings - Fork 34
127 lines (102 loc) · 2.86 KB
/
pull-request.yml
File metadata and controls
127 lines (102 loc) · 2.86 KB
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
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
name: Pull request
on:
pull_request:
push:
branches:
- main
- 'feature/**'
- 'support/**'
workflow_dispatch:
jobs:
build:
name: Build
runs-on: ubuntu-latest
steps:
- name: Checkout
uses: actions/checkout@v6
- name: Cache dependencies
uses: actions/cache@v5
id: npm-install-cache
with:
key: npm-install-${{ hashFiles('package-lock.json') }}
path: node_modules
- name: Setup Node
if: steps.npm-install-cache.outputs.cache-hit != 'true'
uses: actions/setup-node@v6
with:
node-version-file: .nvmrc
- name: Install dependencies
if: steps.npm-install-cache.outputs.cache-hit != 'true'
run: npm install
- name: Build
run: npm run build
env:
NODE_ENV: production
linting:
name: Code style checks
runs-on: ubuntu-latest
needs: [build]
steps:
- name: Checkout
uses: actions/checkout@v6
- name: Restore dependencies (from cache)
uses: actions/cache/restore@v5
with:
fail-on-cache-miss: true
key: npm-install-${{ hashFiles('package-lock.json') }}
path: node_modules
- name: Setup Node
uses: actions/setup-node@v6
with:
node-version-file: .nvmrc
package-manager-cache: false
- name: Run linting
run: npm run lint
tests:
name: Javascript unit tests
runs-on: ubuntu-latest
needs: [build]
steps:
- name: Checkout
uses: actions/checkout@v6
- name: Restore dependencies (from cache)
uses: actions/cache/restore@v5
with:
fail-on-cache-miss: true
key: npm-install-${{ hashFiles('package-lock.json') }}
path: node_modules
- name: Setup Node
uses: actions/setup-node@v6
with:
node-version-file: .nvmrc
package-manager-cache: false
- name: Run tests
run: npm run test:js -- --coverage
- name: Save test coverage
uses: actions/upload-artifact@v6
with:
name: Javascript unit tests coverage
path: coverage
sonar:
name: Sonar analysis
runs-on: ubuntu-latest
needs: [build, tests]
env:
GITHUB_TOKEN: ${{ secrets.GITHUB_TOKEN }}
SONAR_TOKEN: ${{ secrets.SONAR_TOKEN }}
SONAR_HOST_URL: ${{ secrets.SONAR_HOST_URL }}
steps:
- name: Checkout
if: ${{ env.SONAR_TOKEN }}
uses: actions/checkout@v6
with:
fetch-depth: 0
- name: Restore test coverage
if: ${{ env.SONAR_TOKEN }}
uses: actions/download-artifact@v7
with:
name: Javascript unit tests coverage
path: coverage
- name: Sonar analysis
if: ${{ env.SONAR_TOKEN }}
uses: SonarSource/sonarqube-scan-action@v7