Skip to content

Commit

Permalink
Merge pull request #149 from FabricLabs/feature/v0.1.0-RC1
Browse files Browse the repository at this point in the history
RC1
  • Loading branch information
martindale authored Jan 25, 2025
2 parents 8f13c15 + ecaa431 commit 791ad1e
Show file tree
Hide file tree
Showing 168 changed files with 9,438 additions and 18,486 deletions.
5 changes: 5 additions & 0 deletions .github/workflows/test.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -30,6 +30,11 @@ jobs:
python-version: '3.8'
- name: Install dependencies
run: npm ci
- name: Download bitcoind
run: |
wget https://bitcoin.org/bin/bitcoin-core-27.0/bitcoin-27.0-x86_64-linux-gnu.tar.gz
tar -xzf bitcoin-27.0-x86_64-linux-gnu.tar.gz
sudo mv bitcoin-27.0/bin/bitcoind /usr/local/bin/
- name: Generate coverage report
run: npm run report:coverage
- name: Send coverage report
Expand Down
4 changes: 2 additions & 2 deletions .nix/node-env.nix
Original file line number Diff line number Diff line change
Expand Up @@ -186,7 +186,7 @@ let
''}
'';

# Recursively traverses all dependencies of a package and pinpoints all
# Recursively traverses all package dependencies and pinpoints all
# dependencies in the package.json file to the versions that are actually
# being used.

Expand Down Expand Up @@ -362,7 +362,7 @@ let
${lib.optionalString reconstructLock ''
if [ -f package-lock.json ]
then
echo "WARNING: Reconstruct lock option enabled, but a lock file already exists!"
echo "WARNING: The reconstruct lock option is enabled, but a lock file already exists!"
echo "This will most likely result in version mismatches! We will remove the lock file and regenerate it!"
rm package-lock.json
else
Expand Down
2 changes: 1 addition & 1 deletion .nvmrc
Original file line number Diff line number Diff line change
@@ -1 +1 @@
v18.19.0
v18.19.1
Loading

0 comments on commit 791ad1e

Please sign in to comment.