Skip to content

Commit

Permalink
Add Github Action to validate the Homey app
Browse files Browse the repository at this point in the history
  • Loading branch information
Erikvl87 committed Sep 27, 2024
1 parent ab26ea6 commit 1f606fe
Showing 1 changed file with 24 additions and 0 deletions.
24 changes: 24 additions & 0 deletions .github/workflows/homey-validate.yml
Original file line number Diff line number Diff line change
@@ -0,0 +1,24 @@
name: Validate Homey App
on:
workflow_dispatch:
push:
pull_request:

jobs:
main:
name: Validate Homey App
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@v4
- name: Set up Node.js
uses: actions/setup-node@v3
with:
node-version: '22.6.0'
- name: Install dependencies
run: npm install
- name: Install TypeScript
run: npm install -g typescript
- name: Validate Homey App
uses: athombv/github-action-homey-app-validate@master
with:
level: publish

0 comments on commit 1f606fe

Please sign in to comment.