Skip to content

Commit e3443ba

Browse files
committed
cleanup
1 parent 09ac8aa commit e3443ba

File tree

2 files changed

+5
-6
lines changed

2 files changed

+5
-6
lines changed

.github/workflows/pull-request.yaml

Lines changed: 0 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -78,7 +78,6 @@ jobs:
7878
input-string: 'Hello World'
7979

8080
- name: Check Outputs
81-
if: ${{ steps.get_line_rate.outputs.lineRate < 0.9 }}
8281
uses: actions/github-script@v3
8382
with:
8483
script: |

src/run.ts

Lines changed: 5 additions & 5 deletions
Original file line numberDiff line numberDiff line change
@@ -1,17 +1,17 @@
11
import * as core from "@actions/core";
2-
import { lowercase } from "./operations/lowercase";
3-
import { uppercase } from "./operations/uppercase";
4-
import { kebabcase } from "./operations/kebabcase";
2+
import {lowercase} from "./operations/lowercase";
3+
import {uppercase} from "./operations/uppercase";
4+
import {kebabcase} from "./operations/kebabcase";
55
import {dnsSubdomain} from "./operations/dns-subdomain";
66

77
export async function run() {
88
try {
99
const operation: string = core.getInput("operation");
1010
const inputString: string = core.getInput("input-string");
1111
let maxLength: number = parseInt(core.getInput("max-length"), 10);
12-
12+
1313
let outputString = "";
14-
14+
1515
switch (operation) {
1616
case "lowercase":
1717
outputString = lowercase(inputString);

0 commit comments

Comments
 (0)