Skip to content

Commit 6e739ad

Browse files
authored
test: migrate yarn modern examples to corepack (#1350)
* test: migrate yarn modern examples to corepack * chore: use corepack for yarn modern maintenance
1 parent c19c3fa commit 6e739ad

12 files changed

+60
-1903
lines changed

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

+1-1
Original file line numberDiff line numberDiff line change
@@ -13,7 +13,7 @@ jobs:
1313
steps:
1414
- name: Checkout
1515
uses: actions/checkout@v4
16-
16+
- run: corepack enable yarn # experimental - see https://nodejs.org/docs/latest/api/corepack.html
1717
- name: Custom Yarn command
1818
uses: ./
1919
with:

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

+1-1
Original file line numberDiff line numberDiff line change
@@ -13,7 +13,7 @@ jobs:
1313
steps:
1414
- name: Checkout
1515
uses: actions/checkout@v4
16-
16+
- run: corepack enable yarn # experimental - see https://nodejs.org/docs/latest/api/corepack.html
1717
- name: Custom Yarn command
1818
uses: ./
1919
with:

docs/MAINTENANCE.md

+8-8
Original file line numberDiff line numberDiff line change
@@ -6,7 +6,7 @@ This document describes updating the [examples](../examples) in this repository
66

77
The [examples](../examples) directory contains examples of the use of Cypress (Current) [Configuration](https://docs.cypress.io/guides/references/configuration) which applies to Cypress 10 and later. These examples test and demonstrate the use of [cypress-io/github-action](https://github.com/cypress-io/github-action).
88

9-
The examples make use of [npm](https://www.npmjs.com/), [pnpm](https://pnpm.io/), [Yarn 1 (Classic)](https://classic.yarnpkg.com/) and [Yarn Modern](https://yarnpkg.com/) (Yarn 2 and later) to define and install the packages being used.
9+
The examples make use of [npm](https://www.npmjs.com/), [pnpm](https://pnpm.io/), [Yarn 1 (Classic)](https://classic.yarnpkg.com/) and [Yarn Modern](https://yarnpkg.com/) to define and install the packages being used. For [Yarn Modern](https://yarnpkg.com/) the recommended [Corepack](https://yarnpkg.com/corepack) is used as a Yarn version manager.
1010

1111
*The previous [examples/v9](https://github.com/cypress-io/github-action/tree/v5/examples/v9) are archived in the [v5](https://github.com/cypress-io/github-action/tree/v5/) branch. This directory contains examples which were set up to use Cypress `9.7.0`, the last version using Legacy Configuration, covering Cypress 9 and below. These `v9` examples are no longer maintained.
1212

@@ -18,20 +18,16 @@ The examples make use of [npm](https://www.npmjs.com/), [pnpm](https://pnpm.io/)
1818

1919
- [git](https://git-scm.com/) distributed version control system.
2020

21-
- [npm](https://www.npmjs.com/), which is installed with [Node.js](https://nodejs.org/)
21+
- [npm](https://www.npmjs.com/), which is installed with [Node.js](https://nodejs.org/).
22+
23+
- [corepack](https://github.com/nodejs/corepack), which is installed with [Node.js](https://nodejs.org/).
2224

2325
- [pnpm](https://pnpm.io/) installed through:
2426

2527
```bash
2628
npm install pnpm@latest -g
2729
```
2830

29-
- [Yarn 1 (Classic)](https://classic.yarnpkg.com/) installed through:
30-
31-
```bash
32-
npm install yarn@latest -g
33-
```
34-
3531
- [Visual Studio Code](https://code.visualstudio.com/) or other editor
3632

3733
Under Microsoft Windows it may be necessary to also execute the following preparatory command:
@@ -55,3 +51,7 @@ This updates all [examples](../examples) to cypress@latest.
5551
[.github/workflows/example-install-only.yml](../.github/workflows/example-install-only.yml) contains a hard-coded Cypress version number. This can be updated by hand.
5652

5753
After updating the examples locally, they can be committed with git and a pull request opened on GitHub.
54+
55+
### Updating Yarn examples
56+
57+
The script [/scripts/update-cypress-latest-yarn.sh](../scripts/update-cypress-latest-yarn.sh) (which is invoked through `npm run update:cypress` to update the Yarn examples) runs [Yarn 1 (Classic)](https://classic.yarnpkg.com/) as an `npm` global install, runs [Yarn Modern](https://yarnpkg.com/) through Corepack and returns Corepack to its default disabled state on completion.

examples/yarn-modern-pnp/.yarn/releases/yarn-4.6.0.cjs

-934
This file was deleted.

examples/yarn-modern-pnp/.yarnrc.yml

-1
This file was deleted.

examples/yarn-modern-pnp/README.md

+9-1
Original file line numberDiff line numberDiff line change
@@ -1,3 +1,11 @@
11
# example: yarn-modern-pnp
22

3-
This example demonstrates installing dependencies using [Yarn Modern (version 2 and later)](https://yarnpkg.com/) with [Plug'n'Play](https://yarnpkg.com/features/pnp) turned on.
3+
This example demonstrates installing dependencies using [Yarn Modern v4](https://yarnpkg.com/) with [corepack](https://yarnpkg.com/corepack) enabled and the default configuration of [Plug'n'Play](https://yarnpkg.com/features/pnp) enabled.
4+
5+
Run locally with:
6+
7+
```shell
8+
corepack enable yarn
9+
yarn
10+
yarn test
11+
```

examples/yarn-modern/.yarn/releases/yarn-4.6.0.cjs

-934
This file was deleted.

examples/yarn-modern/.yarnrc.yml

-2
Original file line numberDiff line numberDiff line change
@@ -1,3 +1 @@
11
nodeLinker: node-modules
2-
3-
yarnPath: .yarn/releases/yarn-4.6.0.cjs

examples/yarn-modern/README.md

+9-1
Original file line numberDiff line numberDiff line change
@@ -1,3 +1,11 @@
11
# example: yarn-modern
22

3-
This example demonstrates installing dependencies using [Yarn Modern (version 2 and later)](https://yarnpkg.com/).
3+
This example demonstrates installing dependencies using [Yarn Modern v4](https://yarnpkg.com/) with [corepack](https://yarnpkg.com/corepack) enabled and the configuration option `nodeLinker: node-modules` selected.
4+
5+
Run locally with:
6+
7+
```shell
8+
corepack enable yarn
9+
yarn
10+
yarn test
11+
```

scripts/check-package-manager-yarn.sh

-14
This file was deleted.

scripts/update-cypress-latest-yarn.sh

+31-3
Original file line numberDiff line numberDiff line change
@@ -1,14 +1,31 @@
11
#!/bin/bash
22
set -e # fail on error
33
#
4+
if ! command -v corepack &> /dev/null
5+
then
6+
echo "**corepack is required and not installed**"
7+
echo "Refer to Yarn Modern installation instructions"
8+
echo "https://yarnpkg.com/getting-started/install"
9+
echo "https://yarnpkg.com/corepack"
10+
echo
11+
exit 1 # failure
12+
else
13+
echo "corepack is installed"
14+
fi
15+
#
416
# Examples using the yarn package manager are
517
# updated to Cypress latest version
618
#
7-
# Make sure that yarn is installed
8-
./scripts/check-package-manager-yarn.sh
9-
19+
# After running this script, Yarn 1 Classic latest is installed
20+
# corepack is disabled
21+
#
1022
echo updating yarn examples to Cypress latest version
1123
cd examples
24+
# --------------------------------------------------
25+
# Yarn 1 Classic section
26+
# No corepack
27+
corepack disable yarn
28+
npm install yarn@latest -g
1229

1330
# examples/start-and-yarn-workspaces (yarn)
1431
echo
@@ -37,6 +54,11 @@ cd yarn-classic
3754
yarn add cypress --dev --exact
3855
cd ..
3956

57+
# --------------------------------------------------
58+
# Yarn 4 Modern section
59+
# Use corepack
60+
corepack enable yarn
61+
4062
# examples/yarn-modern
4163
echo
4264
echo updating examples/yarn-modern to cypress@latest
@@ -53,4 +75,10 @@ yarn set version latest
5375
yarn add cypress --dev --exact
5476
cd ..
5577

78+
corepack disable yarn
79+
echo "corepack is now disabled for Yarn"
80+
npm install yarn@latest -g
81+
# End of Yarn 4 Modern section
82+
# --------------------------------------------------
83+
5684
cd ..

scripts/update-cypress-latest.sh

+1-3
Original file line numberDiff line numberDiff line change
@@ -4,14 +4,12 @@ set -e # fail on error
44
# All examples are updated to Cypress latest version
55
#
66
# Make sure that Node.js LTS from https://nodejs.org/en/ is installed before running.
7-
# Ensure yarn v1 (classic) and pnpm are installed.
8-
# npm install yarn -g
7+
# Ensure pnpm is installed.
98
# npm install pnpm -g
109
# The VScode editor is also used in the last step if available.
1110
#
1211
# First check if the required package managers are installed
1312
./scripts/check-package-manager-npm.sh
14-
./scripts/check-package-manager-yarn.sh
1513
./scripts/check-package-manager-pnpm.sh
1614
# then proceed to updating the examples
1715
echo

0 commit comments

Comments
 (0)