-
Notifications
You must be signed in to change notification settings - Fork 11
/
azure-pipelines.yml
84 lines (81 loc) · 2.52 KB
/
azure-pipelines.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
# Node.js
# Build a general Node.js project with npm.
# Add steps that analyze code, save build artifacts, deploy, and more:
# https://docs.microsoft.com/azure/devops/pipelines/languages/javascript
trigger:
- main
- demo
pool:
vmImage: ubuntu-latest
stages:
- stage: ci_code_lint
displayName: CI - Kód formátum ellenőrzés
condition: eq(variables['Build.Reason'], 'PullRequest')
jobs:
- job: basic_check
displayName: Kód ellenőrzés
steps:
- task: NodeTool@0
displayName: "NodeJs 20 telepítés"
inputs:
versionSpec: "20.x"
- task: Bash@3
name: install_dependencies
displayName: Függőségek teleptése
inputs:
targetType: "inline"
script: |
npm upgrade
npm install
- task: Bash@3
name: node_check
displayName: "NodeJS - Kód ellenőrzés"
inputs:
targetType: "inline"
script: |
echo "##[command]A kód rendben?"
npm run lint:js
- task: Bash@3
name: ejs_check
displayName: "EJS - Kód ellenőrzés"
inputs:
targetType: "inline"
script: |
echo "##[command]A kód rendben?"
npm run lint:ejs
- task: Bash@3
name: html_check
displayName: "HTML - Kód ellenőrzés"
inputs:
targetType: "inline"
script: |
echo "##[command]A kód rendben?"
npm run lint:html
- stage: ci_code_check
displayName: CI - Funkció ellenőrzés
condition: eq(variables['Build.Reason'], 'PullRequest')
dependsOn: ci_code_lint
jobs:
- job: basic_check
displayName: Funkció ellenőrzés
steps:
- task: NodeTool@0
displayName: "NodeJs 20 telepítés"
inputs:
versionSpec: "20.x"
- task: Bash@3
name: install_dependencies
displayName: Függőségek teleptése
inputs:
targetType: "inline"
script: |
npm upgrade
npm install
- task: Bash@3
name: unit_tests
displayName: "Funkcionális tesztek futtatása"
inputs:
targetType: "inline"
script: |
echo "##[command]Funkciók rendben?"
npm run test