Update GitHub Actions workflow to use Node.js 22 and adjust build command to utilize pnpm for improved consistency and performance.
This commit is contained in:
parent
ff9f1f4bd1
commit
79cf312d6c
|
|
@ -11,10 +11,10 @@ jobs:
|
|||
steps:
|
||||
- uses: actions/checkout@v5
|
||||
|
||||
- name: Use Node.js 20
|
||||
- name: Use Node.js 22
|
||||
uses: actions/setup-node@v4
|
||||
with:
|
||||
node-version: 20
|
||||
node-version: 22
|
||||
|
||||
- uses: pnpm/action-setup@v4
|
||||
name: Install pnpm
|
||||
|
|
@ -40,5 +40,5 @@ jobs:
|
|||
- name: Build
|
||||
env:
|
||||
ICONS_LIMIT: 100
|
||||
run: turbo build
|
||||
run: pnpm exec turbo build
|
||||
|
||||
|
|
|
|||
Loading…
Reference in New Issue