From 81a3fc0e0309f87af574323ade51ae820fd1af47 Mon Sep 17 00:00:00 2001 From: Djalim Simaila Date: Fri, 9 Jan 2026 12:50:46 +0100 Subject: [PATCH] =?UTF-8?q?=F0=9F=94=A7=20chore(ci):=20removed=20old=20git?= =?UTF-8?q?hub=20workflow=20folder?= MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit --- .github/workflows/main.yml | 26 -------------------------- 1 file changed, 26 deletions(-) delete mode 100644 .github/workflows/main.yml diff --git a/.github/workflows/main.yml b/.github/workflows/main.yml deleted file mode 100644 index 6cbfc6d..0000000 --- a/.github/workflows/main.yml +++ /dev/null @@ -1,26 +0,0 @@ -name: "Check Deno code" - -on: - pull_request: - branches: - - main - -permissions: - contents: read - -jobs: - check-code: - name: "Check Deno code" - runs-on: ubuntu-latest - steps: - - uses: actions/checkout@v4 - - - uses: denoland/setup-deno@v2 - with: - deno-version: v2.x - - - name: Check formatting - run: deno fmt --check - - - name: Check linting - run: deno lint