We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 4d5f1ba commit cdad9d8Copy full SHA for cdad9d8
azure-pipelines.yml
@@ -4,7 +4,7 @@ pool:
4
steps:
5
- task: NodeTool@0
6
inputs:
7
- versionSpec: '8.x'
+ versionSpec: '12.x'
8
9
- task: Npm@1
10
displayName: 'npm ci'
@@ -19,3 +19,24 @@ steps:
19
workingDir: ./tests/
20
command: custom
21
customCommand: 'run test:ci'
22
+
23
+- task: Bash@3
24
+ inputs:
25
+ targetType: 'inline'
26
+ workingDirectory: ./tests/
27
+ script: PUPPETEER_PRODUCT=firefox npm install [email protected]
28
29
30
31
32
33
+ script: PUPPETEER_PRODUCT=firefox npm run test:ci
34
35
+- task: Npm@1
36
+ displayName: 'npm test'
37
38
+ workingDir: ./tests/
39
+ command: custom
40
+ customCommand: 'run test:ci'
41
+ variables:
42
+ PUPPETEER_PRODUCT: firefox
0 commit comments