Skip to content

Commit

Permalink
Revert style changes
Browse files Browse the repository at this point in the history
  • Loading branch information
ghostnaps committed Mar 5, 2024
1 parent 45671c7 commit 91832b9
Show file tree
Hide file tree
Showing 4 changed files with 12 additions and 12 deletions.
2 changes: 1 addition & 1 deletion .gitignore
Original file line number Diff line number Diff line change
Expand Up @@ -4,4 +4,4 @@
# Distribution files
/dist/
/lib/
/__tests__/runner/*
/__tests__/runner/*
4 changes: 2 additions & 2 deletions __tests__/configFile.test.ts
Original file line number Diff line number Diff line change
@@ -1,7 +1,7 @@
import configFile from "../src/configFile";
import foreman from "../src/foreman";
import type {GitHubRelease} from "../src/foreman";
import {parse} from "toml";
import type { GitHubRelease } from "../src/foreman";
import { parse } from "toml";
test("get off my back, Jest", () => {
expect(5).toEqual(5);
});
Expand Down
8 changes: 4 additions & 4 deletions src/foreman.ts
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
import {addPath} from "@actions/core";
import {exec} from "@actions/exec";
import {GitHub} from "@actions/github";
import { addPath } from "@actions/core";
import { exec } from "@actions/exec";
import { GitHub } from "@actions/github";
import semver from "semver";
import os from "os";

Expand Down Expand Up @@ -108,4 +108,4 @@ export default {
filterValidReleases
};

export type {GitHubRelease};
export type { GitHubRelease };
10 changes: 5 additions & 5 deletions src/main.ts
Original file line number Diff line number Diff line change
@@ -1,8 +1,8 @@
import {getInput, debug, addPath, setFailed} from "@actions/core";
import {downloadTool, extractZip} from "@actions/tool-cache";
import {GitHub} from "@actions/github";
import {resolve} from "path";
import {exec} from "@actions/exec";
import { getInput, debug, addPath, setFailed } from "@actions/core";
import { downloadTool, extractZip } from "@actions/tool-cache";
import { GitHub } from "@actions/github";
import { resolve } from "path";
import { exec } from "@actions/exec";
import configFile from "./configFile";
import foreman from "./foreman";

Expand Down

0 comments on commit 91832b9

Please sign in to comment.