Skip to content

Commit

Permalink
Fix broken links (#1085)
Browse files Browse the repository at this point in the history
  • Loading branch information
mmitoraj authored Jul 25, 2024
1 parent f4c3094 commit 23fcbfd
Showing 1 changed file with 10 additions and 10 deletions.
20 changes: 10 additions & 10 deletions docs/contributor/04-10-testing-strategy.md
Original file line number Diff line number Diff line change
Expand Up @@ -6,18 +6,18 @@ Each pull request to the repository triggers the following CI/CD jobs that verif

- `lint / operator-lint` - Is responsible for the Operator linting and static code analysis. For the configuration, see the [lint.yaml](https://github.com/kyma-project/serverless/blob/main/.github/workflows/lint.yaml) file.
- `lint / serverless-lint` - Is responsible for the Serverless linting and static code analysis. For the configuration, see the [lint.yaml](https://github.com/kyma-project/serverless/blob/main/.github/workflows/lint.yaml) file.
- `unit tests / operator-unit-tests` - Runs basic unit tests of Operator's logic. For the configuration, see the [unit-tests.yaml](https://github.com/kyma-project/serverless/blob/main/.github/workflows/unit-tests.yaml) file.
- `unit tests / serverless-unit-tests` - Runs unit tests of Serverless's logic. For the configuration, see the [unit-tests.yaml](https://github.com/kyma-project/serverless/blob/main/.github/workflows/unit-tests.yaml) file.
- `integration tests (pull) / operator-integration-test` - Runs the create/update/delete Serverless integration tests in k3d cluster. For the configuration, see the [integration-tests-pull.yaml](https://github.com/kyma-project/serverless/blob/main/.github/workflows/integration-tests-pull.yaml) file.
- `integration tests (pull) / serverless-integration-test` - Runs the basic functionality integration and the `tracing`, `api-gateway`, and `cloud-event` contract compatibility integration test suite for the Serverless in a k3d cluster. For the configuration, see the [integration-tests-pull.yaml](https://github.com/kyma-project/serverless/blob/main/.github/workflows/integration-tests-pull.yaml) file.
- `unit tests / operator-unit-tests` - Runs basic unit tests of Operator's logic. For the configuration, see the [_unit-tests.yaml](https://github.com/kyma-project/serverless/blob/main/.github/workflows/_unit-tests.yaml) file.
- `unit tests / serverless-unit-tests` - Runs unit tests of Serverless's logic. For the configuration, see the [_unit-tests.yaml](https://github.com/kyma-project/serverless/blob/main/.github/workflows/_unit-tests.yaml) file.
- `integration tests (pull) / operator-integration-test` - Runs the create/update/delete Serverless integration tests in k3d cluster. For the configuration, see the [_integration-tests-pull.yaml](https://github.com/kyma-project/serverless/blob/main/.github/workflows/_integration-tests-pull.yaml) file.
- `integration tests (pull) / serverless-integration-test` - Runs the basic functionality integration and the `tracing`, `api-gateway`, and `cloud-event` contract compatibility integration test suite for the Serverless in a k3d cluster. For the configuration, see the [_integration-tests-pull.yaml](https://github.com/kyma-project/serverless/blob/main/.github/workflows/_integration-tests-pull.yaml) file.
- `gitleaks / gitleaks-scan` - Scans the pull request for secrets and credentials. For the configuration, see the [gitleaks.yaml.yaml](https://github.com/kyma-project/serverless/blob/main/.github/workflows/gitleaks.yaml) file.

## CI/CD Jobs Running on the Main Branch

- `markdown / documentation-link-check` - Checks if there are no broken links in `.md` files. For the configuration, see the [mlc.config.json](https://github.com/kyma-project/serverless/blob/main/.mlc.config.json) and the [markdown.yaml](https://github.com/kyma-project/serverless/blob/main/.github/workflows/markdown.yaml) files.
- `integration tests (push) / operator-integration-test` - Runs the create/update/delete Serverless integration tests in k3d cluster. For the configuration, see the [integration-tests-push.yaml](https://github.com/kyma-project/serverless/blob/main/.github/workflows/integration-tests-push.yaml) file.
- `integration tests (push) / serverless-integration-test` - Runs the basic functionality integration and the `tracing`, `api-gateway`, `cloud-event` and `hana-client` contract compatibility integration test suite for Serverless in a k3d cluster. For the configuration, see the [integration-tests-push.yaml](https://github.com/kyma-project/serverless/blob/main/.github/workflows/integration-tests-push.yaml) file.
- `integration tests (push) / git-auth-integration-test` - Runs the `GitHub` and `Azure DevOps` API and authentication integration test suite for Serverless. For the configuration, see the [integration-tests-push.yaml](https://github.com/kyma-project/serverless/blob/main/.github/workflows/integration-tests-push.yaml) file.
- `integration tests (push) / gardener-integration-test` - Checks the installation of the Serverless module in the Gardener shoot cluster and runs basic integration tests of Serverless. For the configuration, see the [integration-tests-push.yaml](https://github.com/kyma-project/serverless/blob/main/.github/workflows/integration-tests-push.yaml) file.
- `upgrade tests / operator-upgrade-test` - Runs the upgrade integration test suite and verifies if the latest release can be successfully upgraded to the new (`main`) revision. For the configuration, see the [upgrade-tests.yaml](https://github.com/kyma-project/serverless/blob/main/.github/workflows/upgrade-tests.yaml) file.
- `upgrade tests / serverless-upgrade-test` - Runs the basic functionality integration and the `tracing`, `api-gateway`, and `cloud-event` contract compatibility integration test suite for Serverless in a k3d cluster after upgrading from the latest release to the actual revision to check if the Serverless component is working properly after the upgrade. For the configuration, see the [upgrade-tests.yaml](https://github.com/kyma-project/serverless/blob/main/.github/workflows/upgrade-tests.yaml) file.
- `integration tests (push) / operator-integration-test` - Runs the create/update/delete Serverless integration tests in k3d cluster. For the configuration, see the [_integration-tests-push.yaml](https://github.com/kyma-project/serverless/blob/main/.github/workflows/_integration-tests-push.yaml) file.
- `integration tests (push) / serverless-integration-test` - Runs the basic functionality integration and the `tracing`, `api-gateway`, `cloud-event` and `hana-client` contract compatibility integration test suite for Serverless in a k3d cluster. For the configuration, see the [_integration-tests-push.yaml](https://github.com/kyma-project/serverless/blob/main/.github/workflows/_integration-tests-push.yaml) file.
- `integration tests (push) / git-auth-integration-test` - Runs the `GitHub` and `Azure DevOps` API and authentication integration test suite for Serverless. For the configuration, see the [_integration-tests-push.yaml](https://github.com/kyma-project/serverless/blob/main/.github/workflows/_integration-tests-push.yaml) file.
- `integration tests (push) / gardener-integration-test` - Checks the installation of the Serverless module in the Gardener shoot cluster and runs basic integration tests of Serverless. For the configuration, see the [_integration-tests-push.yaml](https://github.com/kyma-project/serverless/blob/main/.github/workflows/_integration-tests-push.yaml) file.
- `upgrade tests / operator-upgrade-test` - Runs the upgrade integration test suite and verifies if the latest release can be successfully upgraded to the new (`main`) revision. For the configuration, see the [_upgrade-tests.yaml](https://github.com/kyma-project/serverless/blob/main/.github/workflows/_upgrade-tests.yaml) file.
- `upgrade tests / serverless-upgrade-test` - Runs the basic functionality integration and the `tracing`, `api-gateway`, and `cloud-event` contract compatibility integration test suite for Serverless in a k3d cluster after upgrading from the latest release to the actual revision to check if the Serverless component is working properly after the upgrade. For the configuration, see the [_upgrade-tests.yaml](https://github.com/kyma-project/serverless/blob/main/.github/workflows/_upgrade-tests.yaml) file.

0 comments on commit 23fcbfd

Please sign in to comment.