Skip to content

Migrate from nodegit to simple-git for Node.js 23+ compatibility #105

Migrate from nodegit to simple-git for Node.js 23+ compatibility

Migrate from nodegit to simple-git for Node.js 23+ compatibility #105

Workflow file for this run

name: CI
on: [push, pull_request, workflow_dispatch]
jobs:
Test-Git-Meta:
runs-on: ubuntu-20.04
steps:
- run: echo "The job was automatically triggered by a ${{ github.event_name }} event."
- run: sudo apt-get install libkrb5-dev
- name: Check out repository code
uses: actions/checkout@v2
- run: git config --global user.name "A U Thor"
- run: git config --global user.email author@example.com
- run: yarn install
working-directory: ${{ github.workspace }}/node
- run: yarn test
working-directory: ${{ github.workspace }}/node
- run: echo "This job's status is ${{ job.status }}."