Rewrite in N-API and update libgit2
#22
Workflow file for this run
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
| name: CI | |
| on: | |
| push: | |
| pull_request: | |
| jobs: | |
| Build: | |
| runs-on: ${{ matrix.os }} | |
| strategy: | |
| matrix: | |
| include: | |
| - os: ubuntu-latest | |
| env: | |
| CC: clang | |
| CXX: clang++ | |
| npm_config_clang: 1 | |
| - os: windows-latest | |
| env: {} | |
| env: ${{ matrix.env }} | |
| steps: | |
| - uses: actions/checkout@v4 | |
| - uses: actions/setup-node@v4 | |
| name: Install Node | |
| with: | |
| node-version: 20 | |
| - name: Install module | |
| run: | | |
| npm run prepare | |
| npm install | |
| - name: Run tests | |
| run: npm test |