CI: Add yarn v1 to packaging tests

This commit is contained in:
Lovell Fuller 2024-08-13 18:39:54 +01:00
parent f1e69a218e
commit 6327f13717
2 changed files with 23 additions and 8 deletions

View File

@ -31,6 +31,10 @@ jobs:
runs-on: ubuntu-22.04 runs-on: ubuntu-22.04
runtime: node runtime: node
package-manager: yarn-pnp package-manager: yarn-pnp
- name: linux-x64-node-yarn-v1
runs-on: ubuntu-22.04
runtime: node
package-manager: yarn-v1
- name: linux-x64-deno - name: linux-x64-deno
runs-on: ubuntu-22.04 runs-on: ubuntu-22.04
runtime: deno runtime: deno
@ -54,6 +58,10 @@ jobs:
runs-on: macos-12 runs-on: macos-12
runtime: node runtime: node
package-manager: yarn-pnp package-manager: yarn-pnp
- name: darwin-x64-node-yarn-v1
runs-on: macos-12
runtime: node
package-manager: yarn-v1
- name: darwin-x64-deno - name: darwin-x64-deno
runs-on: macos-12 runs-on: macos-12
runtime: deno runtime: deno
@ -77,6 +85,10 @@ jobs:
runs-on: windows-2019 runs-on: windows-2019
runtime: node runtime: node
package-manager: yarn-pnp package-manager: yarn-pnp
- name: win32-x64-node-yarn-v1
runs-on: windows-2019
runtime: node
package-manager: yarn-v1
- name: win32-x64-deno - name: win32-x64-deno
runs-on: windows-2019 runs-on: windows-2019
runtime: deno runtime: deno
@ -89,7 +101,7 @@ jobs:
node-version: 20 node-version: 20
- name: Install pnpm - name: Install pnpm
if: ${{ matrix.package-manager == 'pnpm' }} if: ${{ matrix.package-manager == 'pnpm' }}
uses: pnpm/action-setup@v2 uses: pnpm/action-setup@v4
with: with:
version: 8 version: 8
- name: Install Deno - name: Install Deno
@ -99,13 +111,13 @@ jobs:
deno-version: v1.x deno-version: v1.x
- name: Install Bun - name: Install Bun
if: ${{ matrix.runtime == 'bun' }} if: ${{ matrix.runtime == 'bun' }}
uses: oven-sh/setup-bun@v1 uses: oven-sh/setup-bun@v2
with: with:
bun-version: latest bun-version: latest
- name: Version - name: Version
id: version id: version
uses: actions/github-script@v6 uses: actions/github-script@v7
with: with:
script: | script: |
core.setOutput('semver', context.ref.replace('refs/tags/v','')) core.setOutput('semver', context.ref.replace('refs/tags/v',''))
@ -163,6 +175,14 @@ jobs:
yarn install yarn install
yarn node release.mjs yarn node release.mjs
- name: Run with Node.js + yarn v1
if: ${{ matrix.package-manager == 'yarn-v1' }}
run: |
corepack enable
yarn set version classic
yarn install
node release.mjs
- name: Run with Deno - name: Run with Deno
if: ${{ matrix.runtime == 'deno' }} if: ${{ matrix.runtime == 'deno' }}
run: deno run --allow-read --allow-ffi release.mjs run: deno run --allow-read --allow-ffi release.mjs

View File

@ -20,11 +20,6 @@ pnpm add sharp
yarn add sharp yarn add sharp
``` ```
```sh
# yarn v1 (maintenance mode)
yarn add sharp --ignore-engines
```
```sh ```sh
bun add sharp bun add sharp
``` ```