We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent 4d5f1ba commit 8c1119cCopy full SHA for 8c1119c
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'
@@ -14,8 +14,22 @@ steps:
14
customCommand: 'ci'
15
16
17
- displayName: 'npm test'
+ displayName: 'npm test chrome'
18
19
workingDir: ./tests/
20
command: custom
21
customCommand: 'run test:ci'
22
+
23
+- task: Bash@3
24
+ displayName: 'npm install puppeteer firefox'
25
+ inputs:
26
+ targetType: 'inline'
27
+ workingDirectory: ./tests/
28
+ script: PUPPETEER_PRODUCT=firefox npm install [email protected]
29
30
31
+ displayName: 'npm test firefox'
32
33
34
35
+ script: PUPPETEER_PRODUCT=firefox npm run test:ci
0 commit comments