Skip to content
Closed
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension


Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
2 changes: 1 addition & 1 deletion .github/workflows/main.yml
Original file line number Diff line number Diff line change
Expand Up @@ -24,7 +24,7 @@ jobs:
env:
NODE_AUTH_TOKEN: ${{ secrets.GITHUB_TOKEN }}
- name: Upload Reports
uses: actions/upload-artifact@v5
uses: actions/upload-artifact@v6
with:
name: Full reports
path: reports
2 changes: 1 addition & 1 deletion src/index.ts
Original file line number Diff line number Diff line change
@@ -1,4 +1,4 @@
import fs from "fs/promises";

Check failure on line 1 in src/index.ts

View workflow job for this annotation

GitHub Actions / Lint

'fs' is defined but never used
import { inspect } from "node:util";
import * as core from "@actions/core";
import { IS_CI } from "./constants.ts";
Expand Down Expand Up @@ -47,7 +47,7 @@
throw new Error("Please enter some commands.");
}

await logger.log(`Received with command '${commandString}'.`)
await logger.log(`Received with command '${commandString}'.`);

const result = await executeCommand(commandString);

Expand Down
Loading