Skip to content

Commit

Permalink
Merge pull request #1523 from nukeop/feature/local-library-scanner
Browse files Browse the repository at this point in the history
Improved local library scanner
  • Loading branch information
nukeop authored Mar 8, 2024
2 parents f988ec4 + 9e8a22c commit 215d5b2
Show file tree
Hide file tree
Showing 42 changed files with 2,584 additions and 57 deletions.
8 changes: 8 additions & 0 deletions .github/workflows/CI.yml
Original file line number Diff line number Diff line change
Expand Up @@ -54,6 +54,10 @@ jobs:
run: |
echo "C:\Program Files\Git\usr\bin" | Out-File -FilePath $env:GITHUB_PATH -Encoding utf8 -Append
echo "C:\Program Files\Git\mingw64\libexec\git-core" | Out-File -FilePath $env:GITHUB_PATH -Encoding utf8 -Append
- name: install setup tools
if: runner.os == 'macOS'
run: |
sudo -H pip install setuptools
- run: npm ci
- run: npm run lint
- run: npm test
Expand Down Expand Up @@ -103,6 +107,10 @@ jobs:
run: |
echo "C:\Program Files\Git\usr\bin" | Out-File -FilePath $env:GITHUB_PATH -Encoding utf8 -Append
echo "C:\Program Files\Git\mingw64\libexec\git-core" | Out-File -FilePath $env:GITHUB_PATH -Encoding utf8 -Append
- name: install setup tools
if: runner.os == 'macOS'
run: |
sudo -H pip install setuptools
- run: npm ci
- run: npm run ${{ matrix.platform.cmd }}
shell: bash
Expand Down
1 change: 1 addition & 0 deletions .gitignore
Original file line number Diff line number Diff line change
Expand Up @@ -78,3 +78,4 @@ build-dir
#Travis/IDE stuff
.travis.yml
.vs/
target/*
Loading

0 comments on commit 215d5b2

Please sign in to comment.