Skip to content

Commit f886d4d

Browse files
chore: add missing prune.yml workflow (#51)
* chore: add missing prune.yml workflow * Remove the thing
1 parent b1ae78a commit f886d4d

File tree

2 files changed

+15
-2
lines changed

2 files changed

+15
-2
lines changed

.github/workflows/prune.yml

Lines changed: 15 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -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

Lines changed: 0 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -3,5 +3,3 @@ export interface GreetOptions {
33
message: string;
44
times?: number;
55
}
6-
7-
export type IntentionallyUnusedToBreakBuild = 123;

0 commit comments

Comments
 (0)