File tree Expand file tree Collapse file tree 2 files changed +23
-0
lines changed Expand file tree Collapse file tree 2 files changed +23
-0
lines changed Original file line number Diff line number Diff line change
1
+ name : Lint PRs
2
+
3
+ on :
4
+ pull_request :
5
+ types : [opened, synchronize]
6
+
7
+ jobs :
8
+ lint :
9
+ runs-on : windows-latest
10
+
11
+ steps :
12
+ - name : Check out repository
13
+ uses : actions/checkout@v4
14
+
15
+ - name : Set up everything
16
+ uses : ./.github/workflows/set-up-everything
17
+
18
+ - name : Lint
19
+ run : yarn lint
20
+ # TODO: Annotations of files that fail lint?
21
+ # TODO: Maybe write up a job summary per https://docs.github.com/en/actions/using-workflows/workflow-commands-for-github-actions#adding-a-job-summary
Original file line number Diff line number Diff line change @@ -6,3 +6,5 @@ export function assertIsString(value: unknown): string {
6
6
invariant ( isString ( value ) , "Got non-string!" ) ;
7
7
return value ;
8
8
}
9
+
10
+ let x ;
You can’t perform that action at this time.
0 commit comments