Skip to content
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension


Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
2 changes: 1 addition & 1 deletion .github/workflows/lint.yml
Original file line number Diff line number Diff line change
Expand Up @@ -32,7 +32,7 @@ jobs:
- name: Setup Node.js
uses: actions/setup-node@v4
with:
node-version: '22'
node-version-file: '.nvmrc'
cache: npm
registry-url: 'https://npm.pkg.github.com'

Expand Down
4 changes: 2 additions & 2 deletions .github/workflows/npm-version.yml
Original file line number Diff line number Diff line change
Expand Up @@ -33,10 +33,10 @@ jobs:
with:
token: ${{ secrets.HOMEY_GITHUB_ACTIONS_BOT_PERSONAL_ACCESS_TOKEN }}

- name: Set up node 22 environment
- name: Set up node environment
uses: actions/setup-node@v4
with:
node-version: '22'
node-version-file: '.nvmrc'
registry-url: 'https://npm.pkg.github.com'

- name: Version
Expand Down
2 changes: 1 addition & 1 deletion .github/workflows/publish-package-npm.yml
Original file line number Diff line number Diff line change
Expand Up @@ -39,7 +39,7 @@ jobs:
- name: Set up node
uses: actions/setup-node@v4
with:
node-version: '24'
node-version-file: '.nvmrc'
registry-url: 'https://npm.pkg.github.com'

# Sets package.json name & version to environment.
Expand Down
2 changes: 1 addition & 1 deletion .github/workflows/test.yml
Original file line number Diff line number Diff line change
Expand Up @@ -17,7 +17,7 @@ jobs:
- name: Setup Node.js
uses: actions/setup-node@v4
with:
node-version: '22'
node-version-file: '.nvmrc'
cache: npm
registry-url: 'https://npm.pkg.github.com'

Expand Down
4 changes: 2 additions & 2 deletions .github/workflows/update-homey-lib.yml
Original file line number Diff line number Diff line change
Expand Up @@ -33,10 +33,10 @@ jobs:
git config --local user.name "Homey Github Actions Bot"

# Configures a Node.js environment.
- name: Set up node 22 environment
- name: Set up node environment
uses: actions/setup-node@v4
with:
node-version: '22'
node-version-file: '.nvmrc'
# Needed for publishing to npm
registry-url: 'https://registry.npmjs.org'

Expand Down
1 change: 1 addition & 0 deletions .nvmrc
Original file line number Diff line number Diff line change
@@ -0,0 +1 @@
24
2 changes: 1 addition & 1 deletion package-lock.json

Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.

2 changes: 1 addition & 1 deletion package.json
Original file line number Diff line number Diff line change
Expand Up @@ -23,7 +23,7 @@
"homey": "bin/homey.mjs"
},
"engines": {
"node": ">=22"
"node": ">=24"
},
Comment thread
RobinBol marked this conversation as resolved.
"repository": {
"url": "https://github.com/athombv/node-homey"
Expand Down
Loading