We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent c152431 commit 0820957Copy full SHA for 0820957
1 file changed
.github/workflows/python-package.yml
@@ -31,6 +31,20 @@ jobs:
31
- name: Install dependencies
32
run: |
33
python -m poetry sync --all-extras
34
+ - name: Setup Node.js environment
35
+ uses: actions/setup-node@v4.3.0
36
+ # with:
37
+ # # Used to specify a package manager for caching in the default directory. Supported values: npm, yarn, pnpm.
38
+ # cache: # optional
39
+
40
+ - name: Install basedpyright globally
41
+ run: npm install -g basedpyright
42
+ env:
43
+ NPM_CONFIG_PREFIX: ~/.npm-global
44
45
+ - name: Add npm global bin to PATH
46
+ run: echo "$HOME/.npm-global/bin" >> $GITHUB_PATH
47
48
# - name: Lint with flake8
49
# run: |
50
# # stop the build if there are Python syntax errors or undefined names
0 commit comments