From 8eb8174755100118bf7c3589a2b26abc5fd80157 Mon Sep 17 00:00:00 2001 From: fedyna-k Date: Wed, 15 Jan 2025 23:12:07 +0100 Subject: [PATCH] Reworked workflow --- .github/workflows/main.yml | 4 ---- components/Button.tsx | 12 ------------ islands/Counter.tsx | 16 ---------------- 3 files changed, 32 deletions(-) delete mode 100644 components/Button.tsx delete mode 100644 islands/Counter.tsx diff --git a/.github/workflows/main.yml b/.github/workflows/main.yml index ecbecfd..6cbfc6d 100644 --- a/.github/workflows/main.yml +++ b/.github/workflows/main.yml @@ -1,11 +1,7 @@ name: "Check Deno code" on: - push: - branches: ["main"] pull_request: - types: - - opened branches: - main diff --git a/components/Button.tsx b/components/Button.tsx deleted file mode 100644 index f1b80a0..0000000 --- a/components/Button.tsx +++ /dev/null @@ -1,12 +0,0 @@ -import { JSX } from "preact"; -import { IS_BROWSER } from "$fresh/runtime.ts"; - -export function Button(props: JSX.HTMLAttributes) { - return ( - -

{props.count}

- - - ); -}