ep_author_hover 0.3.53 → 0.3.55

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.
@@ -45,12 +45,14 @@ jobs:
45
45
  -
46
46
  uses: actions/setup-node@v3
47
47
  with:
48
- node-version: 12
48
+ node-version: 20
49
49
  cache: 'npm'
50
50
  cache-dependency-path: |
51
51
  src/package-lock.json
52
52
  src/bin/doc/package-lock.json
53
53
  node_modules/${{ steps.plugin_name.outputs.plugin_name }}/package-lock.json
54
+ - run: npm install npm@6.14.18 -g
55
+ name: Install legacy npm for correct dependency resolution
54
56
  -
55
57
  name: Install plugin dependencies
56
58
  run: |
@@ -7,19 +7,8 @@ on: [push]
7
7
  jobs:
8
8
  test:
9
9
  runs-on: ubuntu-latest
10
-
10
+ if: ${{ github.actor != 'dependabot[bot]' }}
11
11
  steps:
12
- -
13
- name: Fail if Dependabot
14
- if: github.actor == 'dependabot[bot]'
15
- run: |
16
- cat <<EOF >&2
17
- Frontend tests skipped because Dependabot can't access secrets.
18
- Manually re-run the jobs to run the frontend tests.
19
- For more information, see:
20
- https://github.blog/changelog/2021-02-19-github-actions-workflows-triggered-by-dependabot-prs-will-run-with-read-only-permissions/
21
- EOF
22
- exit 1
23
12
  -
24
13
  name: Generate Sauce Labs strings
25
14
  id: sauce_strings
@@ -34,11 +23,13 @@ jobs:
34
23
  -
35
24
  uses: actions/setup-node@v3
36
25
  with:
37
- node-version: 12
26
+ node-version: 20
38
27
  cache: 'npm'
39
28
  cache-dependency-path: |
40
29
  src/package-lock.json
41
30
  src/bin/doc/package-lock.json
31
+ - run: npm install npm@6.14.18 -g
32
+ name: Install legacy npm for correct dependency resolution
42
33
  -
43
34
  name: Check out the plugin
44
35
  uses: actions/checkout@v3
@@ -42,12 +42,14 @@ jobs:
42
42
  -
43
43
  uses: actions/setup-node@v3
44
44
  with:
45
- node-version: 12
45
+ node-version: 20
46
46
  cache: 'npm'
47
47
  cache-dependency-path: |
48
48
  node_modules/ep_etherpad-lite/package-lock.json
49
49
  node_modules/ep_etherpad-lite/bin/doc/package-lock.json
50
50
  package-lock.json
51
+ - run: npm install npm@6.14.18 -g
52
+ name: Install legacy npm for correct dependency resolution
51
53
  # All of ep_etherpad-lite's devDependencies are installed because the
52
54
  # plugin might do `require('ep_etherpad-lite/node_modules/${devDep}')`.
53
55
  # Eventually it would be nice to create an ESLint plugin that prohibits
@@ -83,9 +85,11 @@ jobs:
83
85
  -
84
86
  uses: actions/setup-node@v3
85
87
  with:
86
- node-version: 12
88
+ node-version: 20
87
89
  registry-url: https://registry.npmjs.org/
88
90
  cache: 'npm'
91
+ - run: npm install npm@6.14.18 -g
92
+ name: Install legacy npm for correct dependency resolution
89
93
  -
90
94
  name: Bump version (patch)
91
95
  run: |
package/package.json CHANGED
@@ -6,7 +6,7 @@
6
6
  },
7
7
  "name": "ep_author_hover",
8
8
  "description": "Adds author names to span titles (shows on hover), works as authors change their name. Hover includes author color and fast switching between author spans. Hat tip to Martyn York for the initial work on this.",
9
- "version": "0.3.53",
9
+ "version": "0.3.55",
10
10
  "repository": {
11
11
  "type": "git",
12
12
  "url": "git@github.com:JohnMcLear/ep_author_hover.git"