Skip to content

Commit 9ad0bf6

Browse files
committed
Call into package.json scripts from actions workflow
1 parent f8804f9 commit 9ad0bf6

File tree

2 files changed

+3
-3
lines changed

2 files changed

+3
-3
lines changed

.github/workflows/main.yml

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -27,7 +27,7 @@ jobs:
2727
- name: Build
2828
run: |
2929
cd extensions/ql-vscode
30-
gulp
30+
npm run build
3131
shell: bash
3232

3333
- name: Prepare artifacts
@@ -69,7 +69,7 @@ jobs:
6969
- name: Build
7070
run: |
7171
cd extensions/ql-vscode
72-
gulp
72+
npm run build
7373
shell: bash
7474

7575
- name: Lint

.github/workflows/release.yml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -42,7 +42,7 @@ jobs:
4242
- name: Build
4343
run: |
4444
cd extensions/ql-vscode
45-
gulp --release
45+
npm run build -- --release
4646
shell: bash
4747

4848
- name: Prepare artifacts

0 commit comments

Comments
 (0)