Devops/reviewdog typescript (#25)

* Use reviewdog for TSC

* Replace all `type Readonly<T>` with `interface T`

* Use --frozen-lockfile for yarn

* Give all actions a name

* Fix yarn example
This commit is contained in:
Marc Rousavy
2021-03-08 17:51:47 +01:00
committed by GitHub
parent 4e5a79fbde
commit f051481010
9 changed files with 131 additions and 104 deletions

View File

@@ -1,9 +1,9 @@
/**
* Represents a temporary file in the local filesystem.
*/
export type TemporaryFile = Readonly<{
export interface TemporaryFile {
/**
* The path of the file. This file might get deleted once the app closes because it lives in the temp directory.
*/
path: string;
}>;
}