Skip to content

Commit

Permalink
Merge pull request #21 from ngx-primer/develop
Browse files Browse the repository at this point in the history
Fix Issue with PNPM Installation in GitHub Actions Workflow
  • Loading branch information
elhakimdev authored Dec 7, 2024
2 parents 6db756c + 718c00b commit 5896b83
Show file tree
Hide file tree
Showing 2 changed files with 8 additions and 1 deletion.
File renamed without changes.
9 changes: 8 additions & 1 deletion .github/workflows/node.js.yml
Original file line number Diff line number Diff line change
Expand Up @@ -16,8 +16,10 @@ jobs:
# See supported Node.js release schedule at https://nodejs.org/en/about/releases/

steps:
# Checkout the code
- uses: actions/checkout@v4

# Set up Node.js
- name: Set up Node.js ${{ matrix.node-version }}
uses: actions/setup-node@v4
with:
Expand All @@ -26,7 +28,12 @@ jobs:

# Install pnpm
- name: Install pnpm
run: npm install -g pnpm
run: corepack enable pnpm

- name: Debug Node and pnpm
run: |
node --version
pnpm --version
# Install dependencies using pnpm
- name: Install Dependencies
Expand Down

0 comments on commit 5896b83

Please sign in to comment.