Skip to content
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension


Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
4 changes: 2 additions & 2 deletions .github/workflows/node&docker.yml
Original file line number Diff line number Diff line change
Expand Up @@ -17,7 +17,7 @@ jobs:
runs-on: ubuntu-24.04
strategy:
matrix:
node-version: [20.x, 22.x]
node-version: [22.x, 24.x]
steps:
- uses: actions/checkout@v4
- name: Use Node.js ${{ matrix.node-version }}
Expand All @@ -36,7 +36,7 @@ jobs:
yarn compile
- uses: codecov/codecov-action@v5
name: Codecov
if: ${{ matrix.node-version == '20.x' }}
if: ${{ matrix.node-version == '22.x' }}
with:
token: ${{ secrets.CODECOV_TOKEN }} # required
docker-build:
Expand Down
4 changes: 2 additions & 2 deletions Dockerfile
Original file line number Diff line number Diff line change
@@ -1,12 +1,12 @@
FROM node:22-alpine as build
FROM node:24-alpine as build
# Create app directory
WORKDIR /app
COPY package.json yarn.lock ./
RUN apk add --no-cache git && yarn --frozen-lockfile
COPY . .
RUN yarn compile

FROM node:22-alpine as runner
FROM node:24-alpine as runner
# Bundle app source
WORKDIR /app
COPY --from=build /app/lib /app/lib
Expand Down
2 changes: 1 addition & 1 deletion package.json
Original file line number Diff line number Diff line change
Expand Up @@ -20,7 +20,7 @@
"config": "config/"
},
"engines": {
"node": "^20.0.0 || ^22.0.0",
"node": "^22.0.0 || ^24.0.0",
"npm": ">=3.0.0"
},
"scripts": {
Expand Down