From b7981b476ab0c3d21e1a9eab209c26eba1471198 Mon Sep 17 00:00:00 2001 From: ThuraNyunt <227908499+cptthura-alt@users.noreply.github.com> Date: Mon, 10 Nov 2025 20:54:28 +0700 Subject: [PATCH 1/2] Create deno.yml --- .github/workflows/deno.yml | 42 ++++++++++++++++++++++++++++++++++++++ 1 file changed, 42 insertions(+) create mode 100644 .github/workflows/deno.yml diff --git a/.github/workflows/deno.yml b/.github/workflows/deno.yml new file mode 100644 index 00000000..48bebff8 --- /dev/null +++ b/.github/workflows/deno.yml @@ -0,0 +1,42 @@ +# This workflow uses actions that are not certified by GitHub. +# They are provided by a third-party and are governed by +# separate terms of service, privacy policy, and support +# documentation. + +# This workflow will install Deno then run `deno lint` and `deno test`. +# For more information see: https://github.com/denoland/setup-deno + +name: Deno + +on: + push: + branches: ["master"] + pull_request: + branches: ["master"] + +permissions: + contents: read + +jobs: + test: + runs-on: ubuntu-latest + + steps: + - name: Setup repo + uses: actions/checkout@v4 + + - name: Setup Deno + # uses: denoland/setup-deno@v1 + uses: denoland/setup-deno@61fe2df320078202e33d7d5ad347e7dcfa0e8f31 # v1.1.2 + with: + deno-version: v1.x + + # Uncomment this step to verify the use of 'deno fmt' on each commit. + # - name: Verify formatting + # run: deno fmt --check + + - name: Run linter + run: deno lint + + - name: Run tests + run: deno test -A From 36d2eb5af582f07d12ad7668f71ee44d52237a7f Mon Sep 17 00:00:00 2001 From: ThuraNyunt <227908499+cptthura-alt@users.noreply.github.com> Date: Mon, 10 Nov 2025 20:58:09 +0700 Subject: [PATCH 2/2] Create dependabot.unlock --- .github/dependabot.unlock | 11 +++++++++++ 1 file changed, 11 insertions(+) create mode 100644 .github/dependabot.unlock diff --git a/.github/dependabot.unlock b/.github/dependabot.unlock new file mode 100644 index 00000000..5990d9c6 --- /dev/null +++ b/.github/dependabot.unlock @@ -0,0 +1,11 @@ +# To get started with Dependabot version updates, you'll need to specify which +# package ecosystems to update and where the package manifests are located. +# Please see the documentation for all configuration options: +# https://docs.github.com/code-security/dependabot/dependabot-version-updates/configuration-options-for-the-dependabot.yml-file + +version: 2 +updates: + - package-ecosystem: "" # See documentation for possible values + directory: "/" # Location of package manifests + schedule: + interval: "weekly"