Skip to content

Commit fc2e1ee

Browse files
authored
test: prettier format example yml workflows (#1386)
1 parent a2da478 commit fc2e1ee

22 files changed

+3
-22
lines changed

.github/workflows/example-basic-pnpm.yml

-1
Original file line numberDiff line numberDiff line change
@@ -7,7 +7,6 @@ on:
77
workflow_dispatch:
88

99
jobs:
10-
1110
basic-pnpm:
1211
strategy:
1312
fail-fast: false

.github/workflows/example-basic.yml

-1
Original file line numberDiff line numberDiff line change
@@ -8,7 +8,6 @@ on:
88
workflow_dispatch:
99

1010
jobs:
11-
1211
basic:
1312
strategy:
1413
fail-fast: false

.github/workflows/example-chrome.yml

-1
Original file line numberDiff line numberDiff line change
@@ -7,7 +7,6 @@ on:
77
workflow_dispatch:
88

99
jobs:
10-
1110
tests:
1211
runs-on: ubuntu-24.04
1312
steps:

.github/workflows/example-config.yml

-1
Original file line numberDiff line numberDiff line change
@@ -7,7 +7,6 @@ on:
77
workflow_dispatch:
88

99
jobs:
10-
1110
start:
1211
# example where we pass custom base URL
1312
runs-on: ubuntu-24.04

.github/workflows/example-custom-ci-build-id.yml

-1
Original file line numberDiff line numberDiff line change
@@ -38,7 +38,6 @@ env:
3838
GITHUB_TOKEN: ${{ secrets.GITHUB_TOKEN }}
3939

4040
jobs:
41-
4241
check-record-key:
4342
runs-on: ubuntu-24.04
4443
outputs:

.github/workflows/example-custom-command.yml

-1
Original file line numberDiff line numberDiff line change
@@ -7,7 +7,6 @@ on:
77
workflow_dispatch:
88

99
jobs:
10-
1110
start:
1211
# example where instead of forming the default "cypress run ..."
1312
# the user can specify their own command

.github/workflows/example-env.yml

-1
Original file line numberDiff line numberDiff line change
@@ -13,7 +13,6 @@ env:
1313
# see https://on.cypress.io/env
1414
CYPRESS_environmentName: staging
1515
jobs:
16-
1716
e2e:
1817
runs-on: ubuntu-24.04
1918
steps:

.github/workflows/example-firefox.yml

-1
Original file line numberDiff line numberDiff line change
@@ -7,7 +7,6 @@ on:
77
workflow_dispatch:
88

99
jobs:
10-
1110
firefox:
1211
runs-on: ubuntu-24.04
1312
steps:

.github/workflows/example-install-command.yml

-1
Original file line numberDiff line numberDiff line change
@@ -7,7 +7,6 @@ on:
77
workflow_dispatch:
88

99
jobs:
10-
1110
install-command:
1211
runs-on: ubuntu-24.04
1312
steps:

.github/workflows/example-install-only.yml

-1
Original file line numberDiff line numberDiff line change
@@ -7,7 +7,6 @@ on:
77
workflow_dispatch:
88

99
jobs:
10-
1110
# do not install every dependency in this example
1211
# just install Cypress, but make sure to cache it
1312
install-cypress-only:

.github/workflows/example-node-versions.yml

-1
Original file line numberDiff line numberDiff line change
@@ -7,7 +7,6 @@ on:
77
workflow_dispatch:
88

99
jobs:
10-
1110
cypress-run:
1211
runs-on: ubuntu-24.04
1312
# let's make sure Cypress works on several versions of Node

.github/workflows/example-quiet.yml

-1
Original file line numberDiff line numberDiff line change
@@ -7,7 +7,6 @@ on:
77
workflow_dispatch:
88

99
jobs:
10-
1110
cypress-run:
1211
runs-on: ubuntu-24.04
1312
steps:

.github/workflows/example-recording.yml

-1
Original file line numberDiff line numberDiff line change
@@ -20,7 +20,6 @@ env:
2020
GITHUB_TOKEN: ${{ secrets.GITHUB_TOKEN }}
2121

2222
jobs:
23-
2423
check-record-key:
2524
runs-on: ubuntu-24.04
2625
outputs:

.github/workflows/example-start-and-pnpm-workspaces.yml

+2-2
Original file line numberDiff line numberDiff line change
@@ -7,8 +7,8 @@ on:
77
workflow_dispatch:
88

99
jobs:
10-
# The example has pnpm workspaces in its "root" folder
11-
# examples/start-and-pnpm-workspaces
10+
# The example has pnpm workspaces in its "root" folder
11+
# examples/start-and-pnpm-workspaces
1212

1313
single-ws:
1414
# This job installs pnpm,

.github/workflows/example-start-and-yarn-workspaces.yml

-1
Original file line numberDiff line numberDiff line change
@@ -7,7 +7,6 @@ on:
77
workflow_dispatch:
88

99
jobs:
10-
1110
single:
1211
# the example has Yarn workspace in its "root" folder
1312
# examples/start-and-yarn-workspaces

.github/workflows/example-start.yml

-1
Original file line numberDiff line numberDiff line change
@@ -13,7 +13,6 @@ env:
1313
NO_UPDATE_CHECK: 1
1414

1515
jobs:
16-
1716
start:
1817
# example with web application build,
1918
# server start and waiting for the server

.github/workflows/example-wait-on.yml

-1
Original file line numberDiff line numberDiff line change
@@ -7,7 +7,6 @@ on:
77
workflow_dispatch:
88

99
jobs:
10-
1110
wait:
1211
runs-on: ubuntu-24.04
1312
steps:

.github/workflows/example-webpack.yml

-1
Original file line numberDiff line numberDiff line change
@@ -7,7 +7,6 @@ on:
77
workflow_dispatch:
88

99
jobs:
10-
1110
wait:
1211
runs-on: ubuntu-24.04
1312
steps:

.github/workflows/example-yarn-classic.yml

-1
Original file line numberDiff line numberDiff line change
@@ -7,7 +7,6 @@ on:
77
workflow_dispatch:
88

99
jobs:
10-
1110
yarn-classic:
1211
runs-on: ubuntu-24.04
1312
steps:

.github/workflows/example-yarn-modern-pnp.yml

-1
Original file line numberDiff line numberDiff line change
@@ -7,7 +7,6 @@ on:
77
workflow_dispatch:
88

99
jobs:
10-
1110
yarn-modern-pnp:
1211
runs-on: ubuntu-24.04
1312
steps:

.github/workflows/example-yarn-modern.yml

-1
Original file line numberDiff line numberDiff line change
@@ -7,7 +7,6 @@ on:
77
workflow_dispatch:
88

99
jobs:
10-
1110
yarn-modern:
1211
runs-on: ubuntu-24.04
1312
steps:

.prettierignore

+1
Original file line numberDiff line numberDiff line change
@@ -2,3 +2,4 @@
22

33
examples/**/*.js
44
examples/**/*.?js
5+
**/pnpm-lock.yaml

0 commit comments

Comments
 (0)