-
Notifications
You must be signed in to change notification settings - Fork 0
/
azure-pipelines-ci.yml
67 lines (64 loc) · 1.91 KB
/
azure-pipelines-ci.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
trigger:
branches:
include:
# trigger for merge queue branches
- gh-readonly-queue/*
pr:
branches:
include:
- '*'
paths:
exclude:
- infrastructure
resources:
repositories:
- repository: templates
type: github
endpoint: Planning-Inspectorate
name: Planning-Inspectorate/common-pipeline-templates
ref: refs/tags/release/3.17.0
extends:
template: stages/wrapper_ci.yml@templates
parameters:
gitFetchDepth: 0
globalVariables:
- template: azure-pipelines-variables.yml@self
validationJobs:
- name: Run Linting & Tests
steps:
- template: ../steps/node_script.yml
parameters:
nodeVersion: 20
script: npm ci
- template: ../steps/node_script.yml
parameters:
nodeVersion: 20
script: npm run commitlint
- template: ../steps/node_script.yml
parameters:
nodeVersion: 20
script: npm run tscheck
environmentVariables:
TURBO_TEAM: $(TURBO_TEAM)
TURBO_API: $(TURBO_API)
TURBO_TOKEN: $(TURBO_TOKEN)
- template: ../steps/node_script.yml
parameters:
nodeVersion: 20
script: npm run lint:js
- template: ../steps/node_script.yml
parameters:
script: npm run test:cov
nodeVersion: 20
environmentVariables:
TURBO_TEAM: $(TURBO_TEAM)
TURBO_API: $(TURBO_API)
TURBO_TOKEN: $(TURBO_TOKEN)
- template: ../steps/node_script.yml
parameters:
nodeVersion: 20
script: npm run build:release
environmentVariables:
TURBO_TEAM: $(TURBO_TEAM)
TURBO_API: $(TURBO_API)
TURBO_TOKEN: $(TURBO_TOKEN)