Skip to content

Commit 9a2a140

Browse files
fix: back to npm for vsix CI
1 parent 3817110 commit 9a2a140

File tree

1 file changed

+2
-5
lines changed

1 file changed

+2
-5
lines changed

.github/workflows/release_and_publish_vsix.yml

Lines changed: 2 additions & 5 deletions
Original file line numberDiff line numberDiff line change
@@ -15,20 +15,17 @@ jobs:
1515
with:
1616
node-version-file: package.json
1717

18-
- name: Install pnpm
19-
uses: pnpm/action-setup@v4
20-
2118
- name: Get version from package.json
2219
id: get_version
2320
run: |
2421
VERSION=$(jq -r .version package.json)
2522
echo "version=$VERSION" >> $GITHUB_OUTPUT
2623
2724
- name: Install dependencies
28-
run: pnpm install
25+
run: npm ci
2926

3027
- name: Build VSIX package
31-
run: pnpm run package
28+
run: npm run package
3229

3330
- name: Rename extension file
3431
run: "mv extension.vsix postgres-language-server-${{ steps.get_version.outputs.version }}.vsix"

0 commit comments

Comments
 (0)