-
Notifications
You must be signed in to change notification settings - Fork 213
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
build(performance): Remove ID's from performance-check (#14669)
- Loading branch information
1 parent
0fe2c82
commit 812b8ea
Showing
1 changed file
with
0 additions
and
14 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
|
@@ -13,98 +13,84 @@ jobs: | |
steps: | ||
- name: Running performance checks on the homepage | ||
uses: jakepartusch/[email protected] | ||
id: psi | ||
with: | ||
url: "https://ubuntu.com" | ||
threshold: $THRESHOLD | ||
strategy: desktop | ||
- name: Running performance checks on the desktop overview page | ||
uses: jakepartusch/[email protected] | ||
id: psi | ||
with: | ||
url: "https://ubuntu.com/desktop" | ||
threshold: $THRESHOLD | ||
strategy: desktop | ||
- name: Running performance checks on the download overview page | ||
uses: jakepartusch/[email protected] | ||
id: psi | ||
with: | ||
url: "https://ubuntu.com/download" | ||
threshold: $THRESHOLD | ||
strategy: desktop | ||
- name: Running performance checks on the blog | ||
uses: jakepartusch/[email protected] | ||
id: psi | ||
with: | ||
url: "https://ubuntu.com/blog" | ||
threshold: $THRESHOLD | ||
strategy: desktop | ||
- name: Running performance checks on the openstack overview | ||
uses: jakepartusch/[email protected] | ||
id: psi | ||
with: | ||
url: "https://ubuntu.com/openstack" | ||
threshold: $THRESHOLD | ||
strategy: desktop | ||
- name: Running performance checks on the kubernetes overview | ||
uses: jakepartusch/[email protected] | ||
id: psi | ||
with: | ||
url: "https://ubuntu.com/kubernetes" | ||
threshold: $THRESHOLD | ||
strategy: desktop | ||
- name: Running performance checks on the managed overview | ||
uses: jakepartusch/[email protected] | ||
id: psi | ||
with: | ||
url: "https://ubuntu.com/managed" | ||
threshold: $THRESHOLD | ||
strategy: desktop | ||
- name: Running performance checks on the ai overview | ||
uses: jakepartusch/[email protected] | ||
id: psi | ||
with: | ||
url: "https://ubuntu.com/ai" | ||
threshold: $THRESHOLD | ||
strategy: desktop | ||
- name: Running performance checks on the robotics overview | ||
uses: jakepartusch/[email protected] | ||
id: psi | ||
with: | ||
url: "https://ubuntu.com/robotics" | ||
threshold: $THRESHOLD | ||
strategy: desktop | ||
- name: Running performance checks on the core overview | ||
uses: jakepartusch/[email protected] | ||
id: psi | ||
with: | ||
url: "https://ubuntu.com/core" | ||
threshold: $THRESHOLD | ||
strategy: desktop | ||
- name: Running performance checks on the cloud overview | ||
uses: jakepartusch/[email protected] | ||
id: psi | ||
with: | ||
url: "https://ubuntu.com/cloud" | ||
threshold: $THRESHOLD | ||
strategy: desktop | ||
- name: Running performance checks on the tutorials overview | ||
uses: jakepartusch/[email protected] | ||
id: psi | ||
with: | ||
url: "https://ubuntu.com/tutorials" | ||
threshold: $THRESHOLD | ||
strategy: desktop | ||
- name: Running performance checks on a tutorial | ||
uses: jakepartusch/[email protected] | ||
id: psi | ||
with: | ||
url: "https://ubuntu.com/tutorials/how-to-upgrade-ubuntu-lts-to-ubuntu-pro-on-aws-using-aws-license-manager#1-overview" | ||
threshold: $THRESHOLD | ||
strategy: desktop | ||
- name: Running performance checks on the core docs | ||
uses: jakepartusch/[email protected] | ||
id: psi | ||
with: | ||
url: "https://ubuntu.com/core/docs" | ||
threshold: $THRESHOLD | ||
|