Skip to content

Commit 37a3e35

Browse files
committed
Bumped node to 20
1 parent 8da2154 commit 37a3e35

File tree

5 files changed

+14
-11
lines changed

5 files changed

+14
-11
lines changed

.github/workflows/backend-tests.yml

Lines changed: 3 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -45,12 +45,14 @@ jobs:
4545
-
4646
uses: actions/setup-node@v3
4747
with:
48-
node-version: 12
48+
node-version: 20
4949
cache: 'npm'
5050
cache-dependency-path: |
5151
src/package-lock.json
5252
src/bin/doc/package-lock.json
5353
node_modules/${{ steps.plugin_name.outputs.plugin_name }}/package-lock.json
54+
- run: npm install [email protected] -g
55+
name: Install legacy npm for correct dependency resolution
5456
-
5557
name: Install plugin dependencies
5658
run: |

.github/workflows/frontend-tests.yml

Lines changed: 3 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -34,11 +34,13 @@ jobs:
3434
-
3535
uses: actions/setup-node@v3
3636
with:
37-
node-version: 12
37+
node-version: 20
3838
cache: 'npm'
3939
cache-dependency-path: |
4040
src/package-lock.json
4141
src/bin/doc/package-lock.json
42+
- run: npm install [email protected] -g
43+
name: Install legacy npm for correct dependency resolution
4244
-
4345
name: Check out the plugin
4446
uses: actions/checkout@v3

.github/workflows/npmpublish.yml

Lines changed: 6 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -42,12 +42,14 @@ jobs:
4242
-
4343
uses: actions/setup-node@v3
4444
with:
45-
node-version: 12
45+
node-version: 20
4646
cache: 'npm'
4747
cache-dependency-path: |
4848
node_modules/ep_etherpad-lite/package-lock.json
4949
node_modules/ep_etherpad-lite/bin/doc/package-lock.json
5050
package-lock.json
51+
- run: npm install [email protected] -g
52+
name: Install legacy npm for correct dependency resolution
5153
# All of ep_etherpad-lite's devDependencies are installed because the
5254
# plugin might do `require('ep_etherpad-lite/node_modules/${devDep}')`.
5355
# Eventually it would be nice to create an ESLint plugin that prohibits
@@ -83,9 +85,11 @@ jobs:
8385
-
8486
uses: actions/setup-node@v3
8587
with:
86-
node-version: 12
88+
node-version: 20
8789
registry-url: https://registry.npmjs.org/
8890
cache: 'npm'
91+
- run: npm install [email protected] -g
92+
name: Install legacy npm for correct dependency resolution
8993
-
9094
name: Bump version (patch)
9195
run: |

.gitignore

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -1,2 +1,3 @@
11
node_modules/
22
.ep_initialized
3+
.idea

locales/pt-br.json

Lines changed: 1 addition & 7 deletions
Original file line numberDiff line numberDiff line change
@@ -1,9 +1,3 @@
11
{
2-
"@metadata": {
3-
"authors": [
4-
"Eduardo Addad de Oliveira",
5-
"Eduardoaddad"
6-
]
7-
},
8-
"ep_spellcheck.spellcheck": "Verificação ortográfica"
2+
"ep_spellcheck.spellcheck" : "Correção Ortográfica"
93
}

0 commit comments

Comments
 (0)