Skip to content

Commit

Permalink
ci: switch to pnpm and change description wording
Browse files Browse the repository at this point in the history
  • Loading branch information
aamirazad committed Jun 16, 2024
1 parent e0a9ce3 commit 960ddb5
Showing 1 changed file with 7 additions and 3 deletions.
10 changes: 7 additions & 3 deletions .github/workflows/prepare-release.yml
Original file line number Diff line number Diff line change
Expand Up @@ -4,9 +4,9 @@ on:
workflow_dispatch:
inputs:
versionBump:
description: "Bump version"
description: "Type of version bump (major, minor, patch)"
required: true
default: "false"
default: "patch"
type: choice
options:
- "false"
Expand All @@ -29,9 +29,13 @@ jobs:
uses: actions/setup-node@v4
with:
node-version: "16"
cache: "pnpm"

- name: Install pnpm
run: npm install -g pnpm

- name: Install dependencies
run: npm install
run: pnpm install

- name: Build project
run: npm run build
Expand Down

0 comments on commit 960ddb5

Please sign in to comment.