Skip to content

Commit 59c8b13

Browse files
committed
fix CI (hopefully)
1 parent c8cc96b commit 59c8b13

8 files changed

Lines changed: 11 additions & 11 deletions

File tree

.github/workflows/build-push-docker.yml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -22,7 +22,7 @@ jobs:
2222
node-version: 14.x
2323

2424
- name: Install pnpm
25-
run: npm i -g pnpm
25+
run: npm i -g pnpm@latest-7
2626

2727
# Change the version to be the correct one so the version in the image is always the correct one.
2828
- name: Set new version

.github/workflows/code-quality.yml

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -22,7 +22,7 @@ jobs:
2222
with:
2323
node-version: 14.x
2424
- name: Install pnpm
25-
run: npm i -g pnpm
25+
run: npm i -g pnpm@latest-7
2626
- name: Install node packages
2727
run: |
2828
pnpm install --frozen-lockfile
@@ -45,7 +45,7 @@ jobs:
4545
with:
4646
node-version: 14.x
4747
- name: Install pnpm
48-
run: npm i -g pnpm
48+
run: npm i -g pnpm@latest-7
4949
- name: Install node packages
5050
run: |
5151
pnpm install --frozen-lockfile
@@ -68,7 +68,7 @@ jobs:
6868
with:
6969
node-version: 14.x
7070
- name: Install pnpm
71-
run: npm i -g pnpm
71+
run: npm i -g pnpm@latest-7
7272
- name: Install node packages
7373
run: |
7474
pnpm install --frozen-lockfile

.github/workflows/deploy-docs.yml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -26,7 +26,7 @@ jobs:
2626
node-version: 14.x
2727

2828
- name: Install pnpm 🏃‍♀️
29-
run: npm i -g pnpm
29+
run: npm i -g pnpm@latest-7
3030

3131
- name: Install node packages 📦
3232
run: |

.github/workflows/docker-build-test.yml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -23,7 +23,7 @@ jobs:
2323
with:
2424
node-version: 14.x
2525
- name: Install pnpm
26-
run: npm i -g pnpm
26+
run: npm i -g pnpm@latest-7
2727
- name: Install node packages
2828
run: |
2929
pnpm install --frozen-lockfile

.github/workflows/unit-tests.yml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -31,7 +31,7 @@ jobs:
3131
with:
3232
node-version: 14.x
3333
- name: Install pnpm
34-
run: npm i -g pnpm
34+
run: npm i -g pnpm@latest-7
3535
- name: Install node packages
3636
run: |
3737
pnpm install --frozen-lockfile

Dockerfile

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -21,7 +21,7 @@ WORKDIR /tms/
2121
ENV PUPPETEER_SKIP_CHROMIUM_DOWNLOAD true
2222
ENV MONGOMS_DISABLE_POSTINSTALL 1
2323

24-
RUN npm install -g pnpm
24+
RUN npm install -g pnpm@latest-7
2525
RUN pnpm install && pnpm build
2626

2727
# =============================================
@@ -44,7 +44,7 @@ RUN apk add --no-cache \
4444
nodejs \
4545
npm
4646

47-
RUN npm install -g pnpm
47+
RUN npm install -g pnpm@latest-7
4848

4949
COPY --from=build tms/server/dist tms/server
5050

docs/docs/dev/setup-env.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -21,7 +21,7 @@ To get started you need a few development tools. The following are required to r
2121
2. Package manager [pnpm](https://pnpm.js.org/en/)
2222
If you have not already you can install `pnpm` with
2323
```cmd
24-
npm install -g pnpm
24+
npm install -g pnpm@latest-7
2525
```
2626

2727
While [Docker](https://docs.docker.com/install/) is not needed it helps you to set up your environment more easily. It's mostly used to spin up a Mongo database on your system in closely to no time. If you don't use Docker you need to provide an alternative MySQL database and to change the configuration in `server/config/development.yml` accordingly.

package.json

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
{
22
"private": true,
3-
"version": "3.0.0",
3+
"version": "3.0.2",
44
"engines": {
55
"node": ">=14",
66
"pnpm": ">=5"

0 commit comments

Comments
 (0)