Skip to content

refactor: use git.log command from simple-git and map result to strin… #20

refactor: use git.log command from simple-git and map result to strin…

refactor: use git.log command from simple-git and map result to strin… #20

Workflow file for this run

name: Build
on:
push:
branches-ignore:
- main
- beta
jobs:
build:
name: Build
runs-on: ubuntu-latest
steps:
- name: Checkout
uses: actions/checkout@v4.1.1
- name: Setup Node
uses: actions/setup-node@v4.0.1
with:
node-version: 18
cache: yarn
- name: Install Dependencies
run: yarn install
- name: Build
run: yarn build
- name: Test
run: yarn test