Migrate from nodegit to simple-git for Node.js 23+ compatibility #105
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, 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 }}." |