Skip to content

Commit 538b0f4

Browse files
committed
fix(ci): failing pipeline
1 parent fb7f459 commit 538b0f4

File tree

1 file changed

+3
-6
lines changed

1 file changed

+3
-6
lines changed

.github/workflows/nodejs.yml

Lines changed: 3 additions & 6 deletions
Original file line numberDiff line numberDiff line change
@@ -39,7 +39,7 @@ jobs:
3939
npm i
4040
npm run clean
4141
npm i --workspaces
42-
npm run compile --workspaces
42+
npm run build
4343
4444
- name: npm build
4545
run: |
@@ -48,20 +48,17 @@ jobs:
4848
- name: npm test
4949
if: github.ref != 'refs/heads/main'
5050
run: |
51-
npm run build
52-
npm run test --workspaces
51+
npm run test
5352
5453
- name: npm coverage
5554
if: github.ref == 'refs/heads/main'
5655
#npm run coveralls --workspace=vscode
5756
run: |
58-
npm run build
59-
npm run test --workspaces
57+
npm run test
6058
6159
- name: npm package standalone extension
6260
if: github.ref == 'refs/heads/main'
6361
run: |
64-
npm run build
6562
npm i -g vsce
6663
npm run generate:vsix --workspace=vscode
6764

0 commit comments

Comments
 (0)