Skip to content

Commit 828fede

Browse files
committed
Use npm to install dev deps
1 parent c851b85 commit 828fede

File tree

1 file changed

+4
-2
lines changed

1 file changed

+4
-2
lines changed

.github/workflows/build.yml

Lines changed: 4 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -24,7 +24,7 @@ jobs:
2424
- name: Install dev dependencies
2525
run: |
2626
pip install -r requirements-dev.txt
27-
jlpm
27+
npm install
2828
- name: Build the extension
2929
run: make build
3030
- name: Lint the extension
@@ -49,7 +49,9 @@ jobs:
4949
python-version: '3.9'
5050
architecture: 'x64'
5151
- name: Install packaging dependencies
52-
run: pip install -r requirements-dev.txt
52+
run: |
53+
pip install -r requirements-dev.txt
54+
npm install
5355
- name: Package the extension
5456
run: make packages
5557
- name: Test extension install

0 commit comments

Comments
 (0)