@zurich_portal/icons 1.0.0

This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
@@ -0,0 +1,27 @@
1
+ trigger:
2
+ - main
3
+
4
+ pool:
5
+ vmImage: 'ubuntu-latest'
6
+
7
+ steps:
8
+ - task: NodeTool@0
9
+ inputs:
10
+ versionSpec: '18.x'
11
+ displayName: 'Install Node.js'
12
+
13
+ - script: npm ci
14
+ displayName: 'npm ci'
15
+
16
+ - script: npm install
17
+ displayName: 'npm install'
18
+
19
+ - task: npmAuthenticate@0
20
+ inputs:
21
+ workingFile: '.npmrc'
22
+ displayName: 'npm authenticate'
23
+
24
+ - script: npm publish
25
+ displayName: 'npm publish'
26
+ env:
27
+ NODE_AUTH_TOKEN: $(npmToken)