From e449064222c75b99bd011c8be5b6583d5de6bcb0 Mon Sep 17 00:00:00 2001 From: Julian Waller Date: Wed, 18 Dec 2024 17:06:15 +0000 Subject: [PATCH] chore: add module check workflow --- .github/workflows/companion-module-checks.yaml | 18 ++++++++++++++++++ .github/workflows/node.yaml | 3 +-- 2 files changed, 19 insertions(+), 2 deletions(-) create mode 100644 .github/workflows/companion-module-checks.yaml diff --git a/.github/workflows/companion-module-checks.yaml b/.github/workflows/companion-module-checks.yaml new file mode 100644 index 0000000..bc8d44e --- /dev/null +++ b/.github/workflows/companion-module-checks.yaml @@ -0,0 +1,18 @@ +name: Companion Module Checks + +on: + push: + +jobs: + check: + name: Check module + + if: ${{ !contains(github.repository, 'companion-module-template-') }} + + permissions: + packages: read + + uses: bitfocus/actions/.github/workflows/module-checks.yaml@main + # with: + # upload-artifact: true # uncomment this to upload the built package as an artifact to this workflow that you can download and share with others + diff --git a/.github/workflows/node.yaml b/.github/workflows/node.yaml index 35bbac2..a0c3aac 100644 --- a/.github/workflows/node.yaml +++ b/.github/workflows/node.yaml @@ -12,7 +12,6 @@ jobs: lint: name: Lint runs-on: ubuntu-latest - continue-on-error: true timeout-minutes: 15 steps: @@ -28,7 +27,7 @@ jobs: yarn build env: CI: true - - name: Run typecheck and linter + - name: Run lint run: | yarn lint env: