-
Notifications
You must be signed in to change notification settings - Fork 1
Pipelines
This document outlines the implemented build pipeline that allows for the automatation of integration and testing processes. Having a pipeline enables our team the ability to edit, review, and iterate upon our product.
Our pipeline comprises of 2 parts:
- the local version used by developers to work on the project
- the remote version that ensures new code that is added to the develop branch is up to our teams standard.
Local Pipelines are run using npm scripts. The entire pipeline is run by using the command npm run all
.
Command | Description |
---|---|
npm run all |
Runs all commands above |
npm run build |
Builds the chrome extension using the files in the src/ directory and outputs the files into dist/ directory |
npm run lint |
Runs Eslint on all js files in the src/ and test/ directories |
npm run test |
Runs Jest on all test files in the test/ directory |
npm run test:coverage |
Runs Jest on all test files in the test/ directory and outputs the test coverage reports into coverage/
|
npm run docs:build:test |
Generates api documentation from jsdoc comments and outputs it into the docs/API_Documentation.md
|
npm run docs:build:api |
Generates test documentation from jsdoc comments and outputs it into the docs/Test_Documentation.md
|
npm run clean |
Deletes the dist/ and coverage/ directories if they are found |
Remote Pipelines are run using Github Actions which work similar to other CI platforms in that it functions via yml configuration files.
The overview of our pipeline is shown in the diagram above. The purposes and specifics of each stage in our pipeline are explained below:
- Local Repo: Our team members implement production code on local versions of the codebase so as to allow developers to continuously maintain and produce code for our extension.
- Linter: EsLint configured for the Javascript Standard Style to enforce styling conventions within our codebase.
- Unit Test: Jest testing framework is used to unit test our codebase to ensure proper functionality of our code. Locally perfomed end-to-end tests are also done using Puppeteer.
- Code Quality: Codacy and Code Climate are used to automate code reviewing and track issues from pull requests in order to minimize the project’s technical debt. For more information, checkout our document on quality control.
- Document Automation: JSDocs is our chosen markup language that automates external documentation and annotates the JavaScript source code files.
Since our develop and master branches are protected all new code must first be pushed to Github and then a pull request needs to be created. Once created the base pipeline executes which builds our extension, runs our Linter, then runs our Unit tests, and finally CodeClimate Analyzes the branch and checks for new issues.
If all these pass and the pull request is merged into develop then our next workflow starts which generates coverage reports to send to Codacy and CodeClimate and also generates jsdoc based documentation and uploads it to our GitHub Wiki.
If all these pass and the pull request is merged into master then our next workflow starts which builds the chrome extension, zips it, and then uploads it to the Chrome Webstore.
For a more indepth view of the entire process refer to this.
To update/edit this diagram request access which will be reviewed.
Each Workflow is represented by a single file that can contain multiple jobs to be run and each job is described by a series of steps. Each workflow must have a name, a trigger event, and at least 1 job. Each job must have a name, specify the OS it runs on, and a series of steps
Since we are using Node.js as our package manager the core of our remote pipelines are the npm scripts we use in our Local Pipeline.
All our workflow configuration files can be found at github/workflows
in our repository.
Some Github Actions require secret keys such as API keys which shouldn't be made public. Github enables you to setup environment variables by going to the Secrets page which is found in settings(here). These values can be accessed in github action workflows by using ${{ secrets.<secret_name> }}
where <secret_name>
is the name you set when creating the secret.
Our repository has a total of 3 workflows that run at varying times.
This Workflow executes on pull requests into the develop and master branch.
This workflow can be found at github/workflows/base.yml
.
- Linting all js files in
src/
andtest/
using Eslint - Run all our tests using Jest
This Workflow executes on pushes to master branch which occurs each time a pull request is merged into master.
This workflow can be found at github/workflows/deploy.yml
.
- Build Extension, Zip it up, and upload to the Chrome Web Store
This Workflow executes on pushes to the develop branch which occurs each time a pull request is merged into develop.
This workflow can be found at github/workflows/doc.yml
.
For more details about documentation refer to the Documentation_Guide.
- Generating Documentation and Uploading to our Github Wiki
- Generating Code Coverage Reports and uploading them to Codacy and CodeClimate