.github/workflows/quality-gates.yml
-
- lints files in repo according to
.eslintrc.js
configuration
- lints files in repo according to
-
- Is run in parallel with
API Unit Tests
job - Requires
Lint Check
job to pass to run - runs
src/client/package.json > scripts > test-unit:ci
- runs jest with config:
src/client/jest.config.ts
and coverage on- coverage definitions come from a config file that is shared by client and api:
shared-jest.config
in project root
- coverage definitions come from a config file that is shared by client and api:
- IMPORTANT: Mock all external calls to APIs and services for test isolation and idempotent results in pipelines
- Conditions to Pass:
- All tests must pass
- Coverage must be:
- branches: >= 75%,
- functions: >= 75%,
- lines: >= 75%,
- statements: >= 75%
- Is run in parallel with
-
- Is run in parallel with
Client Unit Tests
job - Requires
Lint Check
job to pass to run - runs
package.json > scripts > test-unit:ci
- runs jest with config:
jest.config.ts
and coverage on- coverage definitions come from a config file that is shared by api and client:
shared-jest.config
in project root
- coverage definitions come from a config file that is shared by api and client:
- IMPORTANT: Mock all external calls to APIs and services for test isolation and idempotent results in pipelines
- Conditions to Pass:
- All tests must pass
- Coverage must be:
- branches: >= 75%,
- functions: >= 75%,
- lines: >= 75%,
- statements: >= 75%
- Is run in parallel with
-
- Is run in parallel with
API Integration Tests
job - Requires
API Unit Test
andClient Unit Test
jobs to pass to run - runs
src/client/package.json > scripts > test-integration:ci
- runs cypress and a local web client
- uses
runner.js
to set some dynamic environment variables needed in order to provide proper test context - Conditions to Pass:
- All tests must pass
- failures will generate snapshots and/or videos, which will be uploaded to github
- All tests must pass
- Is run in parallel with
-
- Is run in parallel with
Client Integration Tests
job - Requires
API Unit Test
andClient Unit Test
jobs to pass to run - runs
package.json > scripts > test-integration:ci
- runs cypress and a local api server
- uses
runner.js
to set some dynamic environment variables needed in order to provide proper test context - Conditions to Pass:
- All tests must pass
- failures will generate snapshots and/or videos, which will be uploaded to github
- All tests must pass
- Is run in parallel with
.github/workflows/deploy-environment-branch.yml
- All branch pushes trigger deployment to
{gh username}-{urlsafe branch name}.{domainname.com}
- contingent upon:
- all quality gates must pass
- data migrations must succeed
- contingent upon:
.github/workflows/deploy-environment-dev.yml
- All pushes to
master
trigger deployment todev.{domainname.com}
- contingent upon:
- all quality gates must pass
- data migrations must succeed
- contingent upon:
.github/workflows/deploy-environment-prod.yml
- Deploys to
prod
if tag:- is formatted correctly (must be valid semver
X.X.X
orvX.X.X
) - is found in
master
branch history (by commit hash) - semver matches version in
package.json
andsrc/client/package.json
- contingent upon:
- all quality gates must pass
- data migrations must succeed
- is formatted correctly (must be valid semver
.github/workflows/revert-environment.yml
- Reverts
prod
to a previous release if tag:- is a reversion tag (tag contains
-revert-
) - tag (commit hash without
-revert-
reversion token) is found inmaster
branch history - without reversion token is compliant semver (must be semver
X.X.X-revert-
->X.X.X
orvX.X.X-beta--revert-1
->vX.X.X-beta-1
) - tag semver matches version in
package.json
andsrc/client/package.json
in the historic tag/commit
- is a reversion tag (tag contains
.github/workflows/cleanup.yml
- If branch is not
master
, any existing branch-specific environment for the current branch in aws is removed/undeployed