Browse Source

[PM-22343] Bump non-cli to Node 22 (#15058)

* Bump non-cli to Node 22

* Fix working-directory

* Lets see what breaks

* Maybe this works
pull/15363/head
Justin Baur 6 months ago committed by GitHub
parent
commit
4c2475a515
No known key found for this signature in database
GPG Key ID: B5690EEEBB952194
  1. 1
      .github/workflows/build-cli.yml
  2. 2
      .nvmrc
  3. 1
      apps/cli/.nvmrc
  4. 4
      apps/cli/package.json
  5. 2
      package.json

1
.github/workflows/build-cli.yml

@ -71,7 +71,6 @@ jobs: @@ -71,7 +71,6 @@ jobs:
- name: Get Node Version
id: retrieve-node-version
working-directory: ./
run: |
NODE_NVMRC=$(cat .nvmrc)
NODE_VERSION=${NODE_NVMRC/v/''}

2
.nvmrc

@ -1 +1 @@ @@ -1 +1 @@
v20
v22

1
apps/cli/.nvmrc

@ -0,0 +1 @@ @@ -0,0 +1 @@
v20

4
apps/cli/package.json

@ -92,5 +92,9 @@ @@ -92,5 +92,9 @@
"semver": "7.7.2",
"tldts": "7.0.1",
"zxcvbn": "4.4.2"
},
"engines": {
"node": "~20",
"npm": "~10"
}
}

2
package.json

@ -231,7 +231,7 @@ @@ -231,7 +231,7 @@
"*.ts": "eslint --cache --cache-strategy content --fix"
},
"engines": {
"node": "~20",
"node": "~22",
"npm": "~10"
}
}

Loading…
Cancel
Save