Skip to content

Commit

Permalink
Add support to node20
Browse files Browse the repository at this point in the history
Change-type: minor
  • Loading branch information
otaviojacobi committed Jan 17, 2024
1 parent 7294199 commit a3381a8
Show file tree
Hide file tree
Showing 4 changed files with 10 additions and 4 deletions.
8 changes: 7 additions & 1 deletion .github/actions/test/action.yml
Expand Up @@ -12,7 +12,7 @@ inputs:
# --- custom environment
NODE_VERSION:
type: string
default: "16.x"
default: "20.x"
VERBOSE:
type: string
default: "true"
Expand All @@ -29,6 +29,12 @@ runs:
node-version: ${{ inputs.NODE_VERSION }}
cache: npm

- name: Set up Python 3.11
if: runner.os == 'macOS'
uses: actions/setup-python@d27e3f3d7c64b4bbf8e4abfb9b63b83e846e0435 # v4
with:
python-version: "3.11"

- name: Setup Node.js (macOS)
uses: actions/setup-node@v3
if: runner.os == 'macOS'
Expand Down
2 changes: 1 addition & 1 deletion .nvmrc
@@ -1 +1 @@
18
20
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
Expand Up @@ -36,7 +36,7 @@
"author": "Juan Cruz Viotti <juan@balena.io>",
"license": "Apache-2.0",
"engines": {
"node": ">=16 < 19"
"node": ">=16"
},
"devDependencies": {
"@balena/lint": "^6.2.1",
Expand Down

0 comments on commit a3381a8

Please sign in to comment.