Skip to content

Commit

Permalink
trigger ci
Browse files Browse the repository at this point in the history
  • Loading branch information
Tchoupinax committed Dec 16, 2024
1 parent 2f201a9 commit 2278f4f
Show file tree
Hide file tree
Showing 2 changed files with 2 additions and 1 deletion.
1 change: 0 additions & 1 deletion .github/workflows/pull-request-action-self-test.yml
Original file line number Diff line number Diff line change
Expand Up @@ -31,7 +31,6 @@ jobs:
with:
version: "0.4.82"
autostart: false
uploadLogs: "success()"

- name: Print $PATH for iggy
run: which iggy-server
Expand Down
2 changes: 2 additions & 0 deletions src/index.ts
Original file line number Diff line number Diff line change
Expand Up @@ -20,6 +20,8 @@ async function main() {
core.info("Starting server...");
startIggyServer();
}

throw new Error("fake");
} catch (error) {
if (error instanceof Error) {
core.setFailed(error.message);
Expand Down

0 comments on commit 2278f4f

Please sign in to comment.