Fixing failing tasks in ci workflow (#394)

* fixing jest config

* fixing eslint errors for react-form

* fixing script lints

* configuring prettier to ignore built files

* updating eslint deps

* updating pnpm lockfile

* updating dep install step in pr workflow

* rm reference to custom validatePackages script

* fixing code sandbox failure

* attempting to fix frozen locfile issue

* fixing install:csb step

* removing unnecessary type assignment
This commit is contained in:
Zachary DeRose
2023-04-25 21:59:49 -07:00
committed by GitHub
parent eac18858f0
commit 449f5ee806
12 changed files with 1340 additions and 425 deletions

View File

@@ -1,11 +1,11 @@
export type Commit = {
commit: CommitOrTree
tree: CommitOrTree
author: AuthorOrCommitter
author?: AuthorOrCommitter
committer: AuthorOrCommitter
subject: string
body: string
parsed: Parsed
parsed?: Parsed
}
export type CommitOrTree = {
@@ -14,13 +14,13 @@ export type CommitOrTree = {
}
export type AuthorOrCommitter = {
name: string
name?: string
email: string
date: string
}
export type Parsed = {
type: string
type?: string
scope?: string | null
subject: string
merge?: null