Skip to content

Commit

Permalink
fix: installation js deps
Browse files Browse the repository at this point in the history
  • Loading branch information
olivmath committed Dec 24, 2023
1 parent c3807c7 commit 8493fde
Showing 1 changed file with 9 additions and 1 deletion.
10 changes: 9 additions & 1 deletion .github/workflows/ci.yml
Original file line number Diff line number Diff line change
Expand Up @@ -33,6 +33,14 @@ jobs:
pip install pytest
pip install -e .
if [ -f requirements.txt ]; then pip install -r requirements.txt; fi
- name: Set up Node.js
uses: actions/setup-node@v2
with:
node-version: "18"
- name: Install Node.js dependencies
run: |
cd test/merkletreejs
yarn install
- name: Test with pytest
run: |
pytest -m "not benchmark" -vv
pytest -m "not benchmark" -vv

0 comments on commit 8493fde

Please sign in to comment.