Automate Building, Testing and Deploying SharePoint Framework Projects with Azure Pipelines in Four Steps

In just four simple steps, this post will show you how to automate the build, test & deployment to SharePoint Online of any SharePoint Framework project using Azure Pipelines. I guarantee you can have it done before your coffee is ready! Seriously… go get the pot going and come back to this post.

DevOps is all the rage these days. Developers throw it in resumes left and right & the recruiters are always searching for someone who can check that box. But what’s funny is like every other hot term these days, people use the term for everything.

You know… the manager who said to you recently:

Can you containerize our DevOps in the cloud to be agile using a SPA and double clicking on the North Star?

John Doe
Development Manager, Contoso

wait, what? what?

Let’s get back on track…

One aspect of it is automating the build, test and deployment phase of a project. If you take a SharePoint Framework project, for instance, the steps are:

  1. build the project
  2. run the automated tests for the project (you DO have tests, don’t you?)
  3. deploy the project to dev|shared dev|stating|qa|production

As a SharePoint Framework developer, you already know these steps. Better yet, they are all very predictable!

SharePoint Framework projects are predictable

Building a SharePoint Framework project, and by doing that I mean getting the artifact you need for production, is the same no matter what you’re building.

gulp build
gulp bundle --ship
gulp package-solution --ship

Testing is the same! Just run gulp test… if it fails, you have something to fix.

Deployment is the same as well. You take the *.sppkg file, upload it to an app catalog and deploy it.

Now… how do you automate this…

Azure Pipelines

Azure DevOps (what used to be VSTS), provides a way to do this. It’s called Azure Pipelines . In the past, this was broken down into two stages: building & releasing.

The build stage was something you could define using YAML files or using a web-based designer that generated the YAML file. Releases could only be defined using the designer tool. The SharePoint Framework docs show you how to create an automation pipeline using these tools: Implement Continuous Integration and Continuous deployment using Azure DevOps

I’m currently working on a chapter for my course, Mastering the SharePoint Framework , that will show you how to do all of this automation with your SharePoint Framework projects using Azure Pipelines. This chapter will be included in the Ultimate bundle of the course.

While that’s one way to do it, I prefer a newer way that Microsoft is pushing: 100% declarative using Azure YAML Pipelines

Azure YAML Pipelines

I like this approach so much more for two reasons:

Azure YAML Pipelines are more flexible

First, it’s much more flexible than the previous approach. Now, builds and releases are all in one bucket. What signifies a release is using a particular type of job, a deployment job. Builds just contain jobs.

The way its set up is that you have stages which contain jobs which contain tasks (or steps). You can have multiple steps in a job, multiple jobs in a stage, and multiple stages in a pipeline.

For instance, the build stage of a SharePoint Framework project may be:

  1. checkout the latest code
  2. install all dependencies: npm install
  3. build the project: gulp build
  4. create the bundle and manifest for the project: gulp bundle –ship
  5. create the *.sppkg file: gulp package-solution –ship

That’s five steps in a single job in a single stage.

You may have another stage that does testing as well. If both of these pass, then you want to move onto the deployment stage. Stages can be dependent on each other, so if the build or tests fail, I don’t want to deploy it. Instead, you want to shame the developer who broke the build!

shame. shame. shame.

Azure YAML Pipelines can be made into a template

The other thing I like about YAML pipelines is you can make things repeatable. Once you’ve defined your process, you can use it over and over. All you have to do is to define things that are repeatable.

Think about it… what is different from building, testing & deploying your SharePoint Framework project than from my SharePoint Framework project? Just three things:

  1. the name of the project (as that defines the *.sppkg filename)
  2. the site you want to deploy it to
  3. the credentials of the account used to deploy it in SharePoint Online

And I’m happy to say, as the Jest presents for SharePoint Framework projects that I created, which you can learn more about in my post Enable Jest testing of SharePoint Framework Projects in One Simple Step , I’ve made adding this to your projects just as easy!

Announcing Azure YAML Pipelines for SPFx Projects

I’ve created a project take takes advantage of the templating capability of Azure YAML pipelines making it incredibly easy for you to automate the build-test-deploy your project.

To create an Azure YAML pipeline, you drop a file azure-pipelines.yml into your project. Here you define your stages, jobs, and steps. But, before you go creating all the jobs and steps, let me save you some time.

The pipeline definition file can reference job template files. These job templates can live within the same project, or they can live in a remote git repository! And that’s where this comes in.

The public repo Voitanos/azure-pipelines-spfx-templates contains templates you can use in your project.

All you have to do is reference these in your azure-pipelines.yml project. To do this, add a resource to the YAML file:

resources:
  repositories:
  - repository: azure-pipelines-spfx-templates
    type: github
    name: voitanos/azure-pipelines-spfx-templates
    endpoint: voitanos-github

For this to work, you need to create a service connection from your Azure DevOps account to Github. That’s documented here: Azure DevOps Services > Azure Pipelines > Service Connections .

In the above snippet, I’ve named my service connection voitanos-github in my Azure DevOps configuration.

Once you’ve done that, you can reference the job templates that project contains in your pipeline:

- stage: Test
  dependsOn: []
  jobs:
    - template: jobs/test.yml@azure-pipelines-spfx-templates
      parameters:
        working_directory: sample
        package_manager: yarn

Each template contains different inputs you can specify. For instance, the one above lets you specify if you want to use Yarn instead of npm for your package manager.

The deployment stage is where you’ll want to set the credentials for the account that will upload and deploy the package to the app catalog. I do that using a variable group to keep credentials out of the YAML pipeline. I also put the URL of the site (or sites) where I want to deploy the package to.

But you said four simple steps?

Maybe it wasn’t clear, but there are only three simple steps to perform to get your project up and running:

  1. create a service connection to GitHub un your Azure DevOps account
  2. create a variable group with the credentials of the account & URL of the site(s) to deploy the package to
  3. drop in an azure-pipelines.yml into your project
  4. add the pipeline to your Azure DevOps project by selecting the azure-pipelines.yml file in the project

This takes only 3-4 minutes… it can’t be easier!

The template repo, Voitanos/azure-pipelines-spfx-templates , contains a sample project so you can see what the full azure-pipelines.yml file looks like.

I use this project to verify the templates are working when I make updates to it.

Here’s what it looks like once I added it to the project I created in my Azure DevOps instance:

Azure Pipeline run instance results

Azure Pipeline run instance results

And just in case it isn’t clear, here’s what the variable group looks like:

Azure Pipeline variable group

Azure Pipeline variable group

Interested in kicking the tires and trying it out on your SPFx project? Cool… take a look at the README in the template project as it contains complete documentation on all the parameters each job template supports and the details steps to get this in your SPFx project.

Andrew Connell
Microsoft MVP, Full-Stack Developer & Chief Course Artisan - Voitanos LLC.
Written by Andrew Connell

Andrew Connell is a full stack developer with a focus on Microsoft Azure & Microsoft 365. He’s received Microsoft’s MVP award every year since 2005 and has helped thousands of developers through the various courses he’s authored & taught. Andrew’s the founder of Voitanos and is dedicated to helping you be the best Microsoft 365 full stack developer. He lives with his wife & two kids in Florida.

Share & Comment