mirror of
https://github.com/FriendsOfTYPO3/tea.git
synced 2024-11-22 10:36:13 +01:00
[BUGFIX] Specify the Node.js version for GitHub Actions (#1318)
Also make the required Node.js and NPM versions in `package.json` more specific.
This commit is contained in:
parent
e1f4257927
commit
0f9e2c7c27
2 changed files with 6 additions and 2 deletions
4
.github/workflows/ci.yml
vendored
4
.github/workflows/ci.yml
vendored
|
@ -92,6 +92,10 @@ jobs:
|
|||
steps:
|
||||
- name: "Checkout"
|
||||
uses: actions/checkout@v4
|
||||
- name: "Set up Node.js"
|
||||
uses: actions/setup-node@v4
|
||||
with:
|
||||
node-version: "18.20.2"
|
||||
- name: "Install modules"
|
||||
run: |
|
||||
npm ci
|
||||
|
|
|
@ -10,8 +10,8 @@
|
|||
"version": "1.0.0",
|
||||
"license": "ISC",
|
||||
"engines": {
|
||||
"node": ">=18.19.0 <19.0.0",
|
||||
"npm": ">=10.0.0"
|
||||
"node": "^18.20.0",
|
||||
"npm": "^10.5.0"
|
||||
},
|
||||
"scripts": {
|
||||
"lint:js": "eslint 'Resources/Public/**/*.js'",
|
||||
|
|
Loading…
Reference in a new issue