Skip to content

Commit fba6d14

Browse files
Set up CI with Azure Pipelines
[skip ci]
1 parent f81cad4 commit fba6d14

File tree

1 file changed

+26
-0
lines changed

1 file changed

+26
-0
lines changed

azure-pipelines.yml

+26
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,26 @@
1+
# Node.js
2+
# Build a general Node.js project with npm.
3+
# Add steps that analyze code, save build artifacts, deploy, and more:
4+
# https://docs.microsoft.com/azure/devops/pipelines/languages/javascript
5+
6+
trigger:
7+
- main
8+
9+
pool:
10+
vmImage: 'ubuntu-latest'
11+
12+
- task: BrowserStackConfig@0
13+
inputs:
14+
BrowserStackServiceEndPoint: 'Azure'
15+
steps:
16+
- task: NodeTool@0
17+
inputs:
18+
versionSpec: '10.x'
19+
displayName: 'Install Node.js'
20+
21+
- script: |
22+
npm install
23+
npm run build
24+
displayName: 'npm install and build'
25+
26+
- task: BrowserStackResults@0

0 commit comments

Comments
 (0)