Skip to content

Commit

Permalink
Update order of imports for [email protected] compliance
Browse files Browse the repository at this point in the history
For some reason ESLint wants the imports in this order after the package is bumped. So be it.
  • Loading branch information
per1234 committed Jul 28, 2023
1 parent 4b7d604 commit 45b4763
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion __tests__/main.test.ts
Original file line number Diff line number Diff line change
Expand Up @@ -10,10 +10,10 @@
// software without disclosing the source code of your own applications. To purchase
// a commercial license, send an email to [email protected]

import io = require("@actions/io");
import path = require("path");
import os = require("os");
import fs = require("fs");
import io = require("@actions/io");
import nock = require("nock");

const toolDir = path.join(__dirname, "runner", "tools");
Expand Down

0 comments on commit 45b4763

Please sign in to comment.