Initializing showVoltage in migrateSettings() #6
Workflow file for this run
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
name: Validate Homey App | |
on: | |
workflow_dispatch: | |
push: | |
branches: | |
- main | |
pull_request: | |
jobs: | |
main: | |
name: Validate Homey App | |
runs-on: ubuntu-latest | |
steps: | |
- uses: actions/checkout@v4 | |
- uses: actions/setup-node@v3 | |
with: | |
node-version: 20 | |
- name: Install dependencies | |
run: npm ci --ignore-scripts --audit=false | |
- name: Install Homey CLI | |
run: npm -g install homey | |
- name: App needs to pass verified level validation | |
run: homey app validate --level=verified | |