Skip to content

Commit

Permalink
ci: add pnpm support to GitHub Actions and Vercel
Browse files Browse the repository at this point in the history
Co-Authored-By: ben <ben@prologe.io>
  • Loading branch information
devin-ai-integration[bot] and benjaminshafii committed Dec 18, 2024
1 parent e62aaf5 commit 1dffd06
Show file tree
Hide file tree
Showing 2 changed files with 12 additions and 2 deletions.
9 changes: 7 additions & 2 deletions .github/workflows/build.yml
Original file line number Diff line number Diff line change
Expand Up @@ -14,8 +14,13 @@ jobs:
with:
node-version: "18.x"

- name: Install pnpm
uses: pnpm/action-setup@v2
with:
version: 8

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

- name: Build plugin
run: npm run build
run: pnpm build
5 changes: 5 additions & 0 deletions vercel.json
Original file line number Diff line number Diff line change
@@ -0,0 +1,5 @@
{
"buildCommand": "pnpm build",
"installCommand": "pnpm install",
"framework": "nextjs"
}

0 comments on commit 1dffd06

Please sign in to comment.