Test page for docs site
Introduction
This is a test page to show all the different components we use on a docs page. We use bold text and italic text and inline code
.
Want to see a note? This is a note. |
Want to see a tip? This is a tip. |
Want to see a warning? This is a warning. |
Want to see a caution? This is a caution. |
Sometimes we have sections separated by horizontal lines, like this:
Lorem ipsum dolor sit amet, consectetur adipiscing elit. Sed do eiusmod tempor incididunt ut labore et dolore magna aliqua. Ut enim ad minim veniam, quis nostrud exercitation ullamco laboris nisi ut aliquip ex ea commodo consequat. Duis aute irure dolor in reprehenderit in voluptate velit esse cillum dolore eu fugiat nulla pariatur. Excepteur sint occaecat cupidatat non proident, sunt in culpa qui officia deserunt mollit anim id est laborum.
This is a subsection
Lorem ipsum dolor sit amet, consectetur adipiscing elit. Sed do eiusmod tempor incididunt ut labore et dolore magna aliqua. Ut enim ad minim veniam, quis nostrud exercitation ullamco laboris nisi ut aliquip ex ea commodo consequat. Duis aute irure dolor in reprehenderit in voluptate velit esse cillum dolore eu fugiat nulla pariatur. Excepteur sint occaecat cupidatat non proident, sunt in culpa qui officia deserunt mollit anim id est laborum.

This is a bullet list
-
AWS S3
-
AWS EC2 Container Service (ECS)
-
Google Cloud Platform (GCP)
-
Azure Container Registry
-
Heroku
-
Firebase
-
Android
-
iOS
This is a set of numbered steps
-
In the CircleCI web app, select your org from the org cards on your user homepage.
-
Select Projects from the sidebar and locate your project from the list. You can use the search to help.
-
Select the ellipsis
next to your project and select Project Settings.
You can also access project settings from each project overview page using the Settings button.
This is a table
Header text column 1 | Header text column 2 | Header text column 3 |
---|---|---|
Text for row 1 column 1 |
Text for row 1 column 2 |
Text for row 1 column 3 |
Text for row 2 column 1 |
Text for row 2 column 2 |
Text for row 2 column 3 |
This is a code block
version: 2.1
# Define the jobs we want to run for this project
jobs:
build:
docker:
- image: cimg/base:2023.03
steps:
- checkout
- run: echo "this is the build job"
test:
docker:
- image: cimg/base:2023.03
steps:
- checkout
- run: echo "this is the test job"
# Orchestrate our job run sequence
workflows:
build_and_test:
jobs:
- build
- test