Skip to content

Commit 29a5db0

Browse files
Include pnpm in build process (#830)
1 parent accdcc0 commit 29a5db0

File tree

3 files changed

+6
-6
lines changed

3 files changed

+6
-6
lines changed

.github/workflows/publish-extensions.yml

+3-3
Original file line numberDiff line numberDiff line change
@@ -33,12 +33,12 @@ jobs:
3333
- uses: actions/checkout@v4
3434
- uses: actions/[email protected]
3535
with:
36-
node-version: "18.x"
36+
node-version: "20.x"
3737
- uses: oven-sh/setup-bun@v2
3838
with:
3939
bun-version: latest
4040
- name: Set up pyenv
41-
uses: "gabrielfalcao/pyenv-action@2f49ca7587f9d0663d13f1147b78d3361417eaf7"
41+
uses: "gabrielfalcao/pyenv-action@32ef4d2c861170ce17ded56d10329d83f4c8f797"
4242
with:
4343
command: python --version
4444
- name: Set default global version
@@ -54,7 +54,7 @@ jobs:
5454
sudo apt-get update
5555
sudo apt-get install libpango1.0-dev libgif-dev
5656
- run: npm install
57-
- run: npm i -g @vscode/vsce
57+
- run: npm i -g @vscode/vsce pnpm
5858
- run: node publish-extensions
5959
env:
6060
OVSX_PAT: ${{ secrets.OVSX_PAT }}

.github/workflows/validate-pr.yml

+2-2
Original file line numberDiff line numberDiff line change
@@ -21,9 +21,9 @@ jobs:
2121
with:
2222
bun-version: latest
2323
- run: npm install
24-
- run: npm i -g @vscode/vsce
24+
- run: npm i -g @vscode/vsce pnpm
2525
- name: Set up pyenv
26-
uses: "gabrielfalcao/pyenv-action@2f49ca7587f9d0663d13f1147b78d3361417eaf7"
26+
uses: "gabrielfalcao/pyenv-action@32ef4d2c861170ce17ded56d10329d83f4c8f797"
2727
with:
2828
command: python --version
2929
- name: Set default global version

.gitpod.yml

+1-1
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,5 @@
11
tasks:
22
- init: |
3-
npm i -g @vscode/vsce
3+
npm i -g @vscode/vsce pnpm
44
curl -fsSL https://bun.sh/install | bash
55
npm i

0 commit comments

Comments
 (0)