'How to create a Azure Pipeline for a NativeScript Angular app?

I am developing a NativeScript Angular app. and I want to automate the process of build for iOS and Android devices whenever any commit OR merge is made to the main branch. Preferably using the Azure Pipelines.

So, more like whenever the main branch is updated, the build for iOS (.ipa) and Android (.apk) files should kick-in and the output should be the .ipa and. apk files.

Is there any documentation or possible ways I could implement this?

Thanks in Advance!



Solution 1:[1]

How to create a Azure Pipeline for a NativeScript Angular app?

You can create an Azure repository to store your NativeScript Angular source code.

Then create a azure pipeline to build the source code for the main branch with Enable continuous integration:

enter image description here

enter image description here

You could check the document NativeScript Testing with Azure Pipelines and thread for some more details.

Sources

This article follows the attribution requirements of Stack Overflow and is licensed under CC BY-SA 3.0.

Source: Stack Overflow

Solution Source
Solution 1 Leo Liu-MSFT