Skip to content

Commit

Permalink
Release v1.27.2 (#775)
Browse files Browse the repository at this point in the history
## Release v1.27.2

### 🔁 CI

* **package**: remove ignore scripts flag from installs
  • Loading branch information
antoinezanardi committed Dec 22, 2023
2 parents 5a82b00 + c63da00 commit 8ef7d87
Show file tree
Hide file tree
Showing 6 changed files with 32 additions and 21 deletions.
2 changes: 1 addition & 1 deletion .github/workflows/build.yml
Original file line number Diff line number Diff line change
Expand Up @@ -63,7 +63,7 @@ jobs:
key: ${{ runner.os }}-pnpm-v3-${{ hashFiles('pnpm-lock.yaml') }}

- name: Install project dependencies 📦
run: pnpm install --ignore-scripts
run: pnpm install
if: steps.cache-node-modules.outputs.cache-hit != 'true'

docker-dev:
Expand Down
2 changes: 1 addition & 1 deletion .github/workflows/release-creation.yml
Original file line number Diff line number Diff line change
Expand Up @@ -66,7 +66,7 @@ jobs:
key: ${{ runner.os }}-pnpm-v3-${{ hashFiles('pnpm-lock.yaml') }}

- name: Install project dependencies 📦
run: pnpm install --ignore-scripts
run: pnpm install
if: steps.cache-node-modules.outputs.cache-hit != 'true'

mutant-tests:
Expand Down
2 changes: 1 addition & 1 deletion .github/workflows/upsert-pr-release.yml
Original file line number Diff line number Diff line change
Expand Up @@ -36,7 +36,7 @@ jobs:
key: ${{ runner.os }}-pnpm-v3-${{ hashFiles('pnpm-lock.yaml') }}

- name: Install project dependencies 📦
run: pnpm install --ignore-scripts
run: pnpm install
if: steps.cache-node-modules.outputs.cache-hit != 'true'

get-next-release-version:
Expand Down
4 changes: 2 additions & 2 deletions Dockerfile
Original file line number Diff line number Diff line change
Expand Up @@ -13,7 +13,7 @@ COPY --chown=node:node package.json ./
COPY --chown=node:node pnpm-lock.yaml ./
COPY --chown=node:node tsconfig*.json ./

RUN pnpm install --ignore-scripts
RUN pnpm install

COPY --chown=node:node src/ src/
COPY --chown=node:node public/ public/
Expand Down Expand Up @@ -41,7 +41,7 @@ RUN pnpm run build

ENV NODE_ENV production

RUN pnpm install --prod --ignore-scripts
RUN pnpm install --prod

FROM node:21-alpine AS production
ENV PNPM_HOME="/pnpm"
Expand Down
3 changes: 2 additions & 1 deletion package.json
Original file line number Diff line number Diff line change
Expand Up @@ -28,7 +28,7 @@
"url": "git+https://github.com/antoinezanardi/werewolves-assistant-api-next.git"
},
"scripts": {
"prepare": "husky install",
"prepare": "is-ci || husky install",
"prebuild": "rimraf dist",
"build": "NODE_ENV=production nest build",
"docker:dev:start": "docker rmi antoinezanardi/werewolves-assistant-api-dev; docker-compose -f docker/werewolves-assistant-api-dev/docker-compose.yml up -d",
Expand Down Expand Up @@ -85,6 +85,7 @@
"class-validator": "^0.14.0",
"dot-object": "^2.1.4",
"fastify": "^4.25.1",
"is-ci": "^3.0.1",
"isobject": "^4.0.0",
"lodash": "^4.17.21",
"mongoose": "^8.0.3",
Expand Down
40 changes: 25 additions & 15 deletions pnpm-lock.yaml

Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.

0 comments on commit 8ef7d87

Please sign in to comment.