We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent b1ae78a commit f886d4dCopy full SHA for f886d4d
.github/workflows/prune.yml
@@ -0,0 +1,15 @@
1
+name: Lint Prune
2
+
3
+on:
4
+ push:
5
+ branches:
6
+ - main
7
+ pull_request:
8
9
+jobs:
10
+ prune:
11
+ runs-on: ubuntu-latest
12
+ steps:
13
+ - uses: actions/checkout@v3
14
+ - uses: ./.github/actions/prepare
15
+ - run: yarn lint:prune
src/types.ts
@@ -3,5 +3,3 @@ export interface GreetOptions {
message: string;
times?: number;
}
-
-export type IntentionallyUnusedToBreakBuild = 123;
0 commit comments