From d43bc4d5abf691a252ca7a566a1dfd79dcd18785 Mon Sep 17 00:00:00 2001 From: trickypr <23250792+trickypr@users.noreply.github.com> Date: Tue, 31 Oct 2023 16:09:52 +1100 Subject: [PATCH] =?UTF-8?q?=F0=9F=91=B7=20Setup=20license=20check=20CI?= MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit --- .github/workflows/main.yml | 19 +++++++++++++++++++ 1 file changed, 19 insertions(+) create mode 100644 .github/workflows/main.yml diff --git a/.github/workflows/main.yml b/.github/workflows/main.yml new file mode 100644 index 0000000..f8ce977 --- /dev/null +++ b/.github/workflows/main.yml @@ -0,0 +1,19 @@ +name: CI + +on: + push: + +jobs: + license_check: + name: License Check + runs-on: ubuntu-latest + + steps: + - name: Clone repo + uses: actions/checkout@v4 + - name: Setup pnpm + uses: pnpm/actions-setyp@v2 + with: + run_install: true + - name: Check licenses + run: pnpm script:license-check