From 3a285536942eb9da20d7da5a08a5169f21176396 Mon Sep 17 00:00:00 2001 From: Jamie Sinn Date: Wed, 5 Nov 2025 16:11:11 -0500 Subject: [PATCH] feat: Add license check job to tests workflow Add a license check job to the GitHub Actions workflow. --- .github/workflows/tests.yml | 8 ++++++++ 1 file changed, 8 insertions(+) diff --git a/.github/workflows/tests.yml b/.github/workflows/tests.yml index 909d2eb2..201bc228 100644 --- a/.github/workflows/tests.yml +++ b/.github/workflows/tests.yml @@ -7,6 +7,14 @@ permissions: contents: read jobs: + license-check: + name: License Check + runs-on: ubuntu-latest + steps: + - uses: actions/checkout@v4 + - uses: DevCycleHQ/license-action@main + with: + language: "javascript" run-tests: runs-on: ubicloud-standard-4 strategy: