Skip to content

Commit

Permalink
dong
Browse files Browse the repository at this point in the history
Signed-off-by: Jan Kowalleck <jan.kowalleck@gmail.com>
  • Loading branch information
jkowalleck committed Jun 17, 2024
1 parent b6705b9 commit 47521c3
Showing 1 changed file with 7 additions and 9 deletions.
16 changes: 7 additions & 9 deletions .github/workflows/nodejs.yml
Original file line number Diff line number Diff line change
Expand Up @@ -89,9 +89,6 @@ jobs:
- "14"
- "14.0.0" # lowest supported
steps:
- name: Checkout
# see https://github.com/actions/checkout
uses: actions/checkout@v4
- name: Setup Node.js ${{ matrix.node-version }}
# see https://github.com/actions/setup-node
uses: actions/setup-node@v4
Expand All @@ -104,15 +101,16 @@ jobs:
run: |-
npm i -g npm@^8
npm --version
- name: enable pnpm
run: |-
corepack enable pnpm
pnpm --version
- name: enable yarn
- name: enable yarn & pnpm
if: "matrix.node-version != '14.0.0'" # yarn14 has broken corepack
run: |-
corepack enable yarn
set -x
corepack enable
yarn --version
pnpm --version
- name: Checkout
# see https://github.com/actions/checkout
uses: actions/checkout@v4
- name: install project
shell: bash
run: |
Expand Down

0 comments on commit 47521c3

Please sign in to comment.