Skip to content

fix(git): fix race condition when configuring git (#71) #235

fix(git): fix race condition when configuring git (#71)

fix(git): fix race condition when configuring git (#71) #235

Workflow file for this run

name: CI
on:
push:
branches: [main]
pull_request:
branches: [main]
permissions: {}
jobs:
lint:
runs-on: ubuntu-latest
steps:
- name: Checkout
uses: actions/checkout@v4
- name: Setup
uses: denoland/setup-deno@v2
- name: Test
run: deno task lint
test:
runs-on: ubuntu-latest
steps:
- name: Checkout
uses: actions/checkout@v4
- name: Setup
uses: denoland/setup-deno@v2
- name: Test
run: deno task test --coverage
- name: Coverage
run: deno coverage --lcov --output=cov.lcov
- name: Upload coverage reports to Codecov
uses: codecov/codecov-action@v5
build:
runs-on: ubuntu-latest
steps:
- name: Checkout
uses: actions/checkout@v4
- name: Setup
uses: denoland/setup-deno@v2
- name: Build
run: deno task forge compile