With our CircleCI configuration, we can add many steps to the process and even add things called orbs. Orbs are essentially predefined packages and commands that can enhance our build process. In this section, we will be adding an orb that was published by Snyk: https://snyk.io/. This scans and looks for bad packages that are currently in the npm ecosystem. We will add this after we have set up our build.
To get our build running and packaged into something that we can deploy, we will add the following to our CircleCI configuration:
- run: npm install- run: npm run build
With this, we will have our system building just as if we were running locally. Let's go ahead and try it out. Follow these steps:
- Add our configuration ...