From 8e83271ed326dcc810294331967cf0fd5d0ed211 Mon Sep 17 00:00:00 2001 From: tpsaint <78318799+tpsaint@users.noreply.github.com> Date: Tue, 9 Sep 2025 14:03:33 -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 0000000..782af35 --- /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: ["main"] + pull_request: + branches: ["main"] + +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 5e7e5b83b89daf619133e04eeea671c7b8a2fefd Mon Sep 17 00:00:00 2001 From: snyk-bot Date: Fri, 3 Oct 2025 15:06:46 +0000 Subject: [PATCH 2/2] fix: upgrade react-icons from 5.4.0 to 5.5.0 Snyk has created this PR to upgrade react-icons from 5.4.0 to 5.5.0. See this package in npm: react-icons See this project in Snyk: https://app.snyk.io/org/tpsaint1966/project/9f578dd8-61c2-459e-a873-2d41c4de2fe6?utm_source=github&utm_medium=referral&page=upgrade-pr --- package.json | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/package.json b/package.json index 4dae9e9..a44536d 100644 --- a/package.json +++ b/package.json @@ -28,7 +28,7 @@ "react-bootstrap": "^1.5.2", "react-dom": "^18.3.1", "react-hook-form": "^6.15.5", - "react-icons": "^5.4.0", + "react-icons": "^5.5.0", "webext-options-sync": "^4.3.0" }, "devDependencies": {