Skip to content

Commit

Permalink
install pnpm
Browse files Browse the repository at this point in the history
  • Loading branch information
Rajaniraiyn committed Jul 12, 2023
1 parent e2840c9 commit 99299e5
Showing 1 changed file with 10 additions and 3 deletions.
13 changes: 10 additions & 3 deletions .github/workflows/publish.yml
Original file line number Diff line number Diff line change
Expand Up @@ -10,15 +10,22 @@ jobs:
runs-on: ubuntu-latest
steps:
- name: Checkout code
uses: actions/checkout@v2
uses: actions/checkout@v3

- name: Setup Node.js
uses: actions/setup-node@v2
uses: actions/setup-node@v3
with:
node-version: '18.x'

- uses: pnpm/action-setup@v2
name: Install pnpm
id: pnpm-install
with:
version: 7
run_install: false

- name: Install dependencies
run: pnpm i --frozen-lockfile
run: pnpm install --frozen-lockfile

- name: Build packages
run: pnpm build
Expand Down

0 comments on commit 99299e5

Please sign in to comment.