Skip to content

Commit

Permalink
fix: remove pnpm from package engine
Browse files Browse the repository at this point in the history
  • Loading branch information
matteovivona committed Aug 3, 2023
1 parent 6c47546 commit ce435e0
Show file tree
Hide file tree
Showing 2 changed files with 13 additions and 4 deletions.
14 changes: 12 additions & 2 deletions .github/workflows/ci.yml
Original file line number Diff line number Diff line change
Expand Up @@ -40,9 +40,19 @@ jobs:
with:
node-version: ${{ matrix.node-version }}
- name: Install with npm
run: npm install turborepo-remote-cache
run: |
cd ${{ github.workspace }}
mkdir npm-repro
cd npm-repro
npm init -y
npm install turborepo-remote-cache
- name: Install with yarn
run: yarn add turborepo-remote-cache
run: |
cd ${{ github.workspace }}
mkdir yarn-repro
cd yarn-repro
npm init -y
yarn add turborepo-remote-cache
build:
runs-on: ${{ matrix.os }}
Expand Down
3 changes: 1 addition & 2 deletions package.json
Original file line number Diff line number Diff line change
Expand Up @@ -98,8 +98,7 @@
"test": "test"
},
"engines": {
"node": ">=18",
"pnpm": ">=8"
"node": ">=16"
},
"packageManager": "pnpm@8.3.1",
"keywords": [
Expand Down

0 comments on commit ce435e0

Please # to comment.