Skip to content

Rewrite in N-API and update libgit2 #22

Rewrite in N-API and update libgit2

Rewrite in N-API and update libgit2 #22

Workflow file for this run

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