Skip to content

Commit

Permalink
chore: add module check workflow
Browse files Browse the repository at this point in the history
  • Loading branch information
Julusian committed Dec 18, 2024
1 parent 3c5707a commit e449064
Show file tree
Hide file tree
Showing 2 changed files with 19 additions and 2 deletions.
18 changes: 18 additions & 0 deletions .github/workflows/companion-module-checks.yaml
Original file line number Diff line number Diff line change
@@ -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

3 changes: 1 addition & 2 deletions .github/workflows/node.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -12,7 +12,6 @@ jobs:
lint:
name: Lint
runs-on: ubuntu-latest
continue-on-error: true
timeout-minutes: 15

steps:
Expand All @@ -28,7 +27,7 @@ jobs:
yarn build
env:
CI: true
- name: Run typecheck and linter
- name: Run lint
run: |
yarn lint
env:
Expand Down

0 comments on commit e449064

Please sign in to comment.