-
Notifications
You must be signed in to change notification settings - Fork 894
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Drop yarn support and update pnpm (#1972)
Signed-off-by: Matteo Collina <[email protected]>
- Loading branch information
Showing
1 changed file
with
1 addition
and
67 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 |
---|---|---|
|
@@ -26,74 +26,8 @@ jobs: | |
- name: Use pnpm | ||
uses: pnpm/[email protected] | ||
with: | ||
version: ^6.0.0 | ||
version: ^9.0.0 | ||
- name: Install dependancies | ||
run: pnpm install | ||
- name: Tests | ||
run: pnpm run test-ci-pnpm | ||
|
||
yarn: | ||
name: yarn package manager on ${{ matrix.node-version }} ${{ matrix.os }} | ||
runs-on: ${{ matrix.os }} | ||
strategy: | ||
fail-fast: false | ||
matrix: | ||
os: [windows-latest, ubuntu-latest] | ||
node-version: [20] | ||
steps: | ||
- uses: actions/checkout@v4 | ||
with: | ||
persist-credentials: false | ||
- name: Use Node.js ${{ matrix.node-version }} | ||
uses: actions/setup-node@v4 | ||
with: | ||
node-version: ${{ matrix.node-version }} | ||
- name: Use yarn | ||
run: | | ||
yarn set version berry && yarn set version 2 | ||
echo "nodeLinker: node-modules" >> .yarnrc.yml | ||
# see https://github.com/yarnpkg/berry/issues/2935#issuecomment-911299992 | ||
yarn add --dev typescript@~4.3.2 | ||
yarn install | ||
env: | ||
# needed due the yarn.lock file in pino's .gitignore | ||
YARN_ENABLE_IMMUTABLE_INSTALLS: false | ||
- name: Tests | ||
run: yarn run test-ci | ||
|
||
yarn-pnp: | ||
name: yarn-pnp package manager on ${{ matrix.node-version }} ${{ matrix.os }} | ||
runs-on: ${{ matrix.os }} | ||
strategy: | ||
fail-fast: false | ||
matrix: | ||
os: [windows-latest, ubuntu-latest] | ||
node-version: [20] | ||
steps: | ||
- uses: actions/checkout@v4 | ||
with: | ||
persist-credentials: false | ||
- name: Use Node.js ${{ matrix.node-version }} | ||
uses: actions/setup-node@v4 | ||
with: | ||
node-version: ${{ matrix.node-version }} | ||
- name: Use yarn | ||
run: | | ||
yarn set version berry | ||
echo 'nodeLinker: pnp | ||
packageExtensions: | ||
debug@*: | ||
dependencies: | ||
supports-color: "*" | ||
treport@*: | ||
dependencies: | ||
tap-yaml: "*" | ||
' >> .yarnrc.yml | ||
yarn add --dev typescript@~4.3.2 | ||
yarn install | ||
yarn add --dev transport@link:./test/fixtures/transport | ||
env: | ||
# needed due the yarn.lock file in pino's .gitignore | ||
YARN_ENABLE_IMMUTABLE_INSTALLS: false | ||
- name: Tests | ||
run: yarn run test-ci-yarn-pnp |