Skip to content

Commit 9ba09d8

Browse files
committed
Split build steps
1 parent d0c675c commit 9ba09d8

File tree

1 file changed

+10
-1
lines changed

1 file changed

+10
-1
lines changed

azure-pipelines.yml

Lines changed: 10 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -39,10 +39,19 @@ steps:
3939

4040
- script: |
4141
npm install
42+
displayName: "NPM install"
43+
44+
- script: |
4245
npm test
46+
displayName: "Run tests"
47+
48+
- script: |
4349
npm run build
50+
displayName: "Build package"
51+
52+
- script: |
4453
npm run build-storybook
45-
displayName: "NPM install and build"
54+
displayName: "Build storybook"
4655
4756
- task: CopyFiles@2
4857
condition: eq(variables['Build.SourceBranch'], 'refs/heads/master')

0 commit comments

Comments
 (0)