Skip to content

Commit bb38c50

Browse files
committed
chore: updated gnpm globally
1 parent 0d4b765 commit bb38c50

12 files changed

+58
-36
lines changed

.github/workflows/backend-tests.yml

Lines changed: 8 additions & 6 deletions
Original file line numberDiff line numberDiff line change
@@ -12,6 +12,8 @@ on:
1212
permissions:
1313
contents: read
1414

15+
env:
16+
GNPM_VERSION: 0.1.0
1517

1618
jobs:
1719
withoutpluginsLinux:
@@ -40,14 +42,14 @@ jobs:
4042
${{ env.PNPM_HOME }}
4143
~/.local/share/gnpm
4244
/usr/local/bin/gnpm
43-
/usr/local/bin/gnpm-0.0.12
45+
/usr/local/bin/gnpm-$GNPM_VERSION
4446
key: ${{ runner.os }}-gnpm-store-${{ hashFiles('**/pnpm-lock.yaml') }}
4547
restore-keys: |
4648
${{ runner.os }}-gnpm-store-
4749
- name: Setup gnpm
4850
uses: SamTV12345/gnpm-setup@main
4951
with:
50-
version: 0.0.12
52+
version: $GNPM_VERSION
5153
-
5254
name: Install libreoffice
5355
uses: awalsh128/[email protected]
@@ -96,14 +98,14 @@ jobs:
9698
${{ env.PNPM_HOME }}
9799
~/.local/share/gnpm
98100
/usr/local/bin/gnpm
99-
/usr/local/bin/gnpm-0.0.12
101+
/usr/local/bin/gnpm-$GNPM_VERSION
100102
key: ${{ runner.os }}-gnpm-store-${{ hashFiles('**/pnpm-lock.yaml') }}
101103
restore-keys: |
102104
${{ runner.os }}-gnpm-store-
103105
- name: Setup gnpm
104106
uses: SamTV12345/gnpm-setup@main
105107
with:
106-
version: 0.0.12
108+
version: $GNPM_VERSION
107109
-
108110
name: Install libreoffice
109111
uses: awalsh128/[email protected]
@@ -171,7 +173,7 @@ jobs:
171173
- name: Setup gnpm
172174
uses: SamTV12345/gnpm-setup@main
173175
with:
174-
version: 0.0.12
176+
version: $GNPM_VERSION
175177
-
176178
name: Install all dependencies and symlink for ep_etherpad-lite
177179
run: gnpm install --frozen-lockfile --runtimeVersion="${{ matrix.node }}"
@@ -224,7 +226,7 @@ jobs:
224226
- name: Setup gnpm
225227
uses: SamTV12345/gnpm-setup@main
226228
with:
227-
version: 0.0.12
229+
version: $GNPM_VERSION
228230
- name: Install dependencies
229231
run: gnpm install --runtimeVersion="${{ matrix.node }}"
230232
- name: Build admin ui

.github/workflows/build-and-deploy-docs.yml

Lines changed: 5 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -23,6 +23,9 @@ concurrency:
2323
group: "pages"
2424
cancel-in-progress: false
2525

26+
env:
27+
GNPM_VERSION: 0.1.0
28+
2629
jobs:
2730
# Single deploy job since we're just deploying
2831
deploy:
@@ -41,14 +44,14 @@ jobs:
4144
${{ env.STORE_PATH }}
4245
~/.local/share/gnpm
4346
/usr/local/bin/gnpm
44-
/usr/local/bin/gnpm-0.0.12
47+
/usr/local/bin/gnpm-$GNPM_VERSION
4548
key: ${{ runner.os }}-gnpm-store-${{ hashFiles('**/pnpm-lock.yaml') }}
4649
restore-keys: |
4750
${{ runner.os }}-gnpm-store-
4851
- name: Setup gnpm
4952
uses: SamTV12345/gnpm-setup@main
5053
with:
51-
version: 0.0.12
54+
version: $GNPM_VERSION
5255
- name: Setup Pages
5356
uses: actions/configure-pages@v5
5457
- name: Install dependencies

.github/workflows/docker.yml

Lines changed: 5 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -15,6 +15,9 @@ env:
1515
permissions:
1616
contents: read
1717

18+
env:
19+
GNPM_VERSION: 0.1.0
20+
1821
jobs:
1922
docker:
2023
runs-on: ubuntu-latest
@@ -52,14 +55,14 @@ jobs:
5255
${{ env.PNPM_HOME }}
5356
~/.local/share/gnpm
5457
/usr/local/bin/gnpm
55-
/usr/local/bin/gnpm-0.0.12
58+
/usr/local/bin/gnpm-$GNPM_VERSION
5659
key: ${{ runner.os }}-gnpm-store-${{ hashFiles('**/pnpm-lock.yaml') }}
5760
restore-keys: |
5861
${{ runner.os }}-gnpm-store-
5962
- name: Setup gnpm
6063
uses: SamTV12345/gnpm-setup@main
6164
with:
62-
version: 0.0.12
65+
version: $GNPM_VERSION
6366
-
6467
name: Test
6568
working-directory: etherpad

.github/workflows/frontend-admin-tests.yml

Lines changed: 6 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -9,6 +9,10 @@ on:
99
permissions:
1010
contents: read # to fetch code (actions/checkout)
1111

12+
13+
env:
14+
GNPM_VERSION: 0.1.0
15+
1216
jobs:
1317
withplugins:
1418
env:
@@ -39,14 +43,14 @@ jobs:
3943
${{ env.PNPM_HOME }}
4044
~/.local/share/gnpm
4145
/usr/local/bin/gnpm
42-
/usr/local/bin/gnpm-0.0.12
46+
/usr/local/bin/gnpm-$GNPM_VERSION
4347
key: ${{ runner.os }}-gnpm-store-${{ hashFiles('**/pnpm-lock.yaml') }}
4448
restore-keys: |
4549
${{ runner.os }}-gnpm-store-
4650
- name: Setup gnpm
4751
uses: SamTV12345/gnpm-setup@main
4852
with:
49-
version: 0.0.12
53+
version: $GNPM_VERSION
5054
- name: Cache playwright binaries
5155
uses: actions/cache@v4
5256
id: playwright-cache

.github/workflows/frontend-tests.yml

Lines changed: 9 additions & 6 deletions
Original file line numberDiff line numberDiff line change
@@ -9,6 +9,9 @@ on:
99
permissions:
1010
contents: read # to fetch code (actions/checkout)
1111

12+
env:
13+
GNPM_VERSION: 0.1.0
14+
1215
jobs:
1316
playwright-chrome:
1417
env:
@@ -34,14 +37,14 @@ jobs:
3437
~/.cache/ms-playwright
3538
~/.local/share/gnpm
3639
/usr/local/bin/gnpm
37-
/usr/local/bin/gnpm-0.0.12
40+
/usr/local/bin/gnpm-$GNPM_VERSION
3841
key: ${{ runner.os }}-gnpm-store-${{ hashFiles('**/pnpm-lock.yaml') }}
3942
restore-keys: |
4043
${{ runner.os }}-gnpm-store-
4144
- name: Setup gnpm
4245
uses: SamTV12345/gnpm-setup@main
4346
with:
44-
version: 0.0.12
47+
version: $GNPM_VERSION
4548
-
4649
name: Install all dependencies and symlink for ep_etherpad-lite
4750
run: gnpm install --frozen-lockfile
@@ -97,14 +100,14 @@ jobs:
97100
~/.local/share/gnpm
98101
~/.cache/ms-playwright
99102
/usr/local/bin/gnpm
100-
/usr/local/bin/gnpm-0.0.12
103+
/usr/local/bin/gnpm-$GNPM_VERSION
101104
key: ${{ runner.os }}-gnpm-store-${{ hashFiles('**/pnpm-lock.yaml') }}
102105
restore-keys: |
103106
${{ runner.os }}-gnpm-store-
104107
- name: Setup gnpm
105108
uses: SamTV12345/gnpm-setup@main
106109
with:
107-
version: 0.0.12
110+
version: $GNPM_VERSION
108111
- name: Install all dependencies and symlink for ep_etherpad-lite
109112
run: gnpm install --frozen-lockfile
110113
- name: export GIT_HASH to env
@@ -159,13 +162,13 @@ jobs:
159162
~/.local/share/gnpm
160163
~/.cache/ms-playwright
161164
/usr/local/bin/gnpm
162-
/usr/local/bin/gnpm-0.0.12
165+
/usr/local/bin/gnpm-$GNPM_VERSION
163166
key: ${{ runner.os }}-gnpm-store-${{ hashFiles('**/pnpm-lock.yaml') }}
164167
restore-keys: ${{ runner.os }}-gnpm-store-
165168
- name: Setup gnpm
166169
uses: SamTV12345/gnpm-setup@main
167170
with:
168-
version: 0.0.12
171+
version: $GNPM_VERSION
169172
-
170173
name: Install all dependencies and symlink for ep_etherpad-lite
171174
run: gnpm install --frozen-lockfile

.github/workflows/handleRelease.yml

Lines changed: 3 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -13,6 +13,7 @@ permissions:
1313

1414
env:
1515
PNPM_HOME: ~/.pnpm-store
16+
GNPM_VERSION: 0.1.0
1617

1718
jobs:
1819
create-release:
@@ -37,14 +38,14 @@ jobs:
3738
~/.local/share/gnpm
3839
~/.cache/ms-playwright
3940
/usr/local/bin/gnpm
40-
/usr/local/bin/gnpm-0.0.12
41+
/usr/local/bin/gnpm-$GNPM_VERSION
4142
key: ${{ runner.os }}-gnpm-store-${{ hashFiles('**/pnpm-lock.yaml') }}
4243
restore-keys: |
4344
${{ runner.os }}-gnpm-store-
4445
- name: Setup gnpm
4546
uses: SamTV12345/gnpm-setup@main
4647
with:
47-
version: 0.0.12
48+
version: $GNPM_VERSION
4849
- name: Install all dependencies and symlink for ep_etherpad-lite
4950
run: gnpm install --frozen-lockfile
5051
- name: Build etherpad

.github/workflows/load-test.yml

Lines changed: 7 additions & 6 deletions
Original file line numberDiff line numberDiff line change
@@ -15,6 +15,7 @@ permissions:
1515
env:
1616
PNPM_HOME: ~/.pnpm-store
1717
LOG_LEVEL: DEBUG
18+
GNPM_VERSION: 0.1.0
1819

1920
jobs:
2021
withoutplugins:
@@ -38,14 +39,14 @@ jobs:
3839
~/.local/share/gnpm
3940
~/.cache/ms-playwright
4041
/usr/local/bin/gnpm
41-
/usr/local/bin/gnpm-0.0.12
42+
/usr/local/bin/gnpm-$GNPM_VERSION
4243
key: ${{ runner.os }}-gnpm-store-${{ hashFiles('**/pnpm-lock.yaml') }}
4344
restore-keys: |
4445
${{ runner.os }}-gnpm-store-
4546
- name: Setup gnpm
4647
uses: SamTV12345/gnpm-setup@main
4748
with:
48-
version: 0.0.12
49+
version: $GNPM_VERSION
4950
-
5051
name: Install all dependencies and symlink for ep_etherpad-lite
5152
run: gnpm install --frozen-lockfile
@@ -81,14 +82,14 @@ jobs:
8182
~/.local/share/gnpm
8283
~/.cache/ms-playwright
8384
/usr/local/bin/gnpm
84-
/usr/local/bin/gnpm-0.0.12
85+
/usr/local/bin/gnpm-$GNPM_VERSION
8586
key: ${{ runner.os }}-gnpm-store-${{ hashFiles('**/pnpm-lock.yaml') }}
8687
restore-keys: |
8788
${{ runner.os }}-gnpm-store-
8889
- name: Setup gnpm
8990
uses: SamTV12345/gnpm-setup@main
9091
with:
91-
version: 0.0.12
92+
version: $GNPM_VERSION
9293
-
9394
name: Install etherpad-load-test
9495
run: sudo npm install -g etherpad-load-test-socket-io
@@ -149,14 +150,14 @@ jobs:
149150
~/.local/share/gnpm
150151
~/.cache/ms-playwright
151152
/usr/local/bin/gnpm
152-
/usr/local/bin/gnpm-0.0.12
153+
/usr/local/bin/gnpm-$GNPM_VERSION
153154
key: ${{ runner.os }}-gnpm-store-${{ hashFiles('**/pnpm-lock.yaml') }}
154155
restore-keys: |
155156
${{ runner.os }}-gnpm-store-
156157
- name: Setup gnpm
157158
uses: SamTV12345/gnpm-setup@main
158159
with:
159-
version: 0.0.12
160+
version: $GNPM_VERSION
160161
-
161162
name: Install all dependencies and symlink for ep_etherpad-lite
162163
run: gnpm install --frozen-lockfile

.github/workflows/perform-type-check.yml

Lines changed: 3 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -14,6 +14,7 @@ permissions:
1414

1515
env:
1616
PNPM_HOME: ~/.pnpm-store
17+
GNPM_VERSION: 0.1.0
1718

1819
jobs:
1920
performTypeCheck:
@@ -34,14 +35,14 @@ jobs:
3435
~/.local/share/gnpm
3536
~/.cache/ms-playwright
3637
/usr/local/bin/gnpm
37-
/usr/local/bin/gnpm-0.0.12
38+
/usr/local/bin/gnpm-$GNPM_VERSION
3839
key: ${{ runner.os }}-gnpm-store-${{ hashFiles('**/pnpm-lock.yaml') }}
3940
restore-keys: |
4041
${{ runner.os }}-gnpm-store-
4142
- name: Setup gnpm
4243
uses: SamTV12345/gnpm-setup@main
4344
with:
44-
version: 0.0.12
45+
version: $GNPM_VERSION
4546
-
4647
name: Install all dependencies and symlink for ep_etherpad-lite
4748
run: gnpm install --frozen-lockfile

.github/workflows/rate-limit.yml

Lines changed: 3 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -14,6 +14,7 @@ permissions:
1414

1515
env:
1616
PNPM_HOME: ~/.pnpm-store
17+
GNPM_VERSION: 0.1.0
1718

1819
jobs:
1920
ratelimit:
@@ -37,14 +38,14 @@ jobs:
3738
~/.local/share/gnpm
3839
~/.cache/ms-playwright
3940
/usr/local/bin/gnpm
40-
/usr/local/bin/gnpm-0.0.12
41+
/usr/local/bin/gnpm-$GNPM_VERSION
4142
key: ${{ runner.os }}-gnpm-store-${{ hashFiles('**/pnpm-lock.yaml') }}
4243
restore-keys: |
4344
${{ runner.os }}-gnpm-store-
4445
- name: Setup gnpm
4546
uses: SamTV12345/gnpm-setup@main
4647
with:
47-
version: 0.0.12
48+
version: $GNPM_VERSION
4849

4950
-
5051
name: docker network

.github/workflows/release.yml

Lines changed: 3 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -16,6 +16,7 @@ on:
1616

1717
env:
1818
PNPM_HOME: ~/.pnpm-store
19+
GNPM_VERSION: 0.1.0
1920

2021
jobs:
2122
releases:
@@ -56,14 +57,14 @@ jobs:
5657
~/.local/share/gnpm
5758
~/.cache/ms-playwright
5859
/usr/local/bin/gnpm
59-
/usr/local/bin/gnpm-0.0.12
60+
/usr/local/bin/gnpm-$GNPM_VERSION
6061
key: ${{ runner.os }}-gnpm-store-${{ hashFiles('**/pnpm-lock.yaml') }}
6162
restore-keys: |
6263
${{ runner.os }}-gnpm-store-
6364
- name: Setup gnpm
6465
uses: SamTV12345/gnpm-setup@main
6566
with:
66-
version: 0.0.12
67+
version: $GNPM_VERSION
6768
- name: Install dependencies ether.github.com
6869
run: gnpm install --frozen-lockfile
6970
working-directory: ether.github.com

0 commit comments

Comments
 (0)