Skip to content

feat: implement agit diff — semantic diff between commits #7

feat: implement agit diff — semantic diff between commits

feat: implement agit diff — semantic diff between commits #7

Workflow file for this run

name: Test
on:
push:
branches: ["**"]
pull_request:
branches: ["**"]
jobs:
test:
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@v4
- name: Set up Go
uses: actions/setup-go@v5
with:
go-version: "1.22"
cache: true
- name: Run tests
run: go test ./...
- name: Build
run: go build -o agit .
test-app:
runs-on: ubuntu-latest
defaults:
run:
working-directory: github-app
steps:
- uses: actions/checkout@v4
- name: Set up Node.js
uses: actions/setup-node@v4
with:
node-version: "20"
cache: "npm"
cache-dependency-path: github-app/package-lock.json
- name: Install dependencies
run: npm ci
- name: Build TypeScript
run: npm run build