Skip to content

Commit 5c64ce0

Browse files
committed
build: add nodejs to code-quality job
1 parent e69b10a commit 5c64ce0

File tree

1 file changed

+10
-0
lines changed

1 file changed

+10
-0
lines changed

.github/workflows/build-test-package-publish.yml

Lines changed: 10 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -89,6 +89,16 @@ jobs:
8989
steps:
9090
- uses: actions/checkout@v3
9191

92+
- name: Setup Node.js environment
93+
uses: actions/setup-node@v3
94+
with:
95+
node-version: "16"
96+
cache: "npm"
97+
cache-dependency-path: package-lock.json
98+
99+
- name: install node modules
100+
run: npm install --also=dev
101+
92102
- name: setup python environment
93103
id: setup-python
94104
uses: actions/setup-python@v4

0 commit comments

Comments
 (0)