Skip to content

Commit

Permalink
Specify node version to omit 2.5.0 (#160)
Browse files Browse the repository at this point in the history
  • Loading branch information
rzadp authored Jul 22, 2024
1 parent e128128 commit fd5b4bb
Show file tree
Hide file tree
Showing 5 changed files with 6 additions and 6 deletions.
2 changes: 1 addition & 1 deletion .github/workflows/test-e2e-cron.yml
Original file line number Diff line number Diff line change
Expand Up @@ -32,7 +32,7 @@ jobs:
timeout-minutes: 1
- uses: actions/setup-node@v3.5.1
with:
node-version: "22"
node-version: "22.5.1"
- run: yarn --immutable
- run: yarn test:e2e
timeout-minutes: 10
2 changes: 1 addition & 1 deletion .github/workflows/test-e2e.yml
Original file line number Diff line number Diff line change
Expand Up @@ -22,7 +22,7 @@ jobs:
timeout-minutes: 1
- uses: actions/setup-node@v3.5.1
with:
node-version: "22"
node-version: "22.5.1"
- run: yarn --immutable
- run: yarn test:e2e
timeout-minutes: 10
2 changes: 1 addition & 1 deletion .github/workflows/test-integration.yml
Original file line number Diff line number Diff line change
Expand Up @@ -13,6 +13,6 @@ jobs:
- uses: actions/checkout@v3.3.0
- uses: actions/setup-node@v3.5.1
with:
node-version: 22
node-version: 22.5.1
- run: yarn --immutable
- run: yarn test:integration --verbose
4 changes: 2 additions & 2 deletions Dockerfile
Original file line number Diff line number Diff line change
@@ -1,4 +1,4 @@
FROM node:22-alpine as builder
FROM node:22.5.1-alpine as builder

WORKDIR /usr/src/app

Expand All @@ -10,7 +10,7 @@ COPY src/ ./src

RUN yarn build

FROM node:22-slim
FROM node:22.5.1-slim

# metadata
ARG VCS_REF=master
Expand Down
2 changes: 1 addition & 1 deletion package.json
Original file line number Diff line number Diff line change
Expand Up @@ -52,7 +52,7 @@
"typescript": "^5.4.5"
},
"engines": {
"node": "^22"
"node": "^22 && !22.5.0"
},
"packageManager": "yarn@4.3.0"
}

0 comments on commit fd5b4bb

Please sign in to comment.