Skip to content

Commit d064e28

Browse files
Fix push check tests (#25)
* Fix push check tests * fix lint
1 parent 133d9e3 commit d064e28

File tree

1 file changed

+10
-0
lines changed

1 file changed

+10
-0
lines changed

.github/workflows/push-check.yml

Lines changed: 10 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -73,6 +73,16 @@ jobs:
7373
run: pipx run nox --session install_bundled_libs
7474
shell: bash
7575

76+
- name: Install Node
77+
uses: actions/setup-node@v3
78+
with:
79+
node-version: ${{ env.NODE_VERSION }}
80+
cache: 'npm'
81+
cache-dependency-path: ${{ env.special-working-directory-relative }}/package-lock.json
82+
83+
- name: Install dependencies (npm ci)
84+
run: npm ci
85+
7686
# Now that the bundle is installed to target using python 3.7
7787
# switch back the python we want to test with
7888
- name: Use Python ${{ matrix.python }}

0 commit comments

Comments
 (0)