ep_table_of_contents 0.3.60 → 0.3.61
This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
|
@@ -42,17 +42,17 @@ jobs:
|
|
|
42
42
|
mv ./node_modules/__tmp ./node_modules/"${PLUGIN_NAME}"
|
|
43
43
|
env:
|
|
44
44
|
PLUGIN_NAME: ${{ steps.plugin_name.outputs.plugin_name }}
|
|
45
|
-
-
|
|
46
|
-
uses: actions/setup-node@v3
|
|
45
|
+
- uses: actions/setup-node@v3
|
|
47
46
|
with:
|
|
48
|
-
node-version:
|
|
47
|
+
node-version: 16
|
|
49
48
|
cache: 'npm'
|
|
50
49
|
cache-dependency-path: |
|
|
51
50
|
src/package-lock.json
|
|
52
51
|
src/bin/doc/package-lock.json
|
|
53
52
|
node_modules/${{ steps.plugin_name.outputs.plugin_name }}/package-lock.json
|
|
54
|
-
-
|
|
55
|
-
name: Install
|
|
53
|
+
- run: npm install npm@6.14.18 -g
|
|
54
|
+
name: Install legacy npm for correct dependency resolution
|
|
55
|
+
- name: Install plugin dependencies
|
|
56
56
|
run: |
|
|
57
57
|
cd ./node_modules/"${PLUGIN_NAME}"
|
|
58
58
|
npm ci
|
|
@@ -31,14 +31,15 @@ jobs:
|
|
|
31
31
|
uses: actions/checkout@v3
|
|
32
32
|
with:
|
|
33
33
|
repository: ether/etherpad-lite
|
|
34
|
-
-
|
|
35
|
-
uses: actions/setup-node@v3
|
|
34
|
+
- uses: actions/setup-node@v3
|
|
36
35
|
with:
|
|
37
|
-
node-version:
|
|
36
|
+
node-version: 16
|
|
38
37
|
cache: 'npm'
|
|
39
38
|
cache-dependency-path: |
|
|
40
39
|
src/package-lock.json
|
|
41
40
|
src/bin/doc/package-lock.json
|
|
41
|
+
- run: npm install npm@6.14.18 -g
|
|
42
|
+
name: Install legacy npm for correct dependency resolution
|
|
42
43
|
-
|
|
43
44
|
name: Check out the plugin
|
|
44
45
|
uses: actions/checkout@v3
|