Skip to content

Commit

Permalink
Test node 23
Browse files Browse the repository at this point in the history
  • Loading branch information
DerekRoberts committed Jan 6, 2025
1 parent 6468570 commit 4e3cb26
Show file tree
Hide file tree
Showing 2 changed files with 4 additions and 5 deletions.
5 changes: 2 additions & 3 deletions .github/workflows/analysis.yml
Original file line number Diff line number Diff line change
Expand Up @@ -44,10 +44,9 @@ jobs:
with:
commands: |
npm ci
npm run test:cov || true
echo $?
npm run test:cov
dir: ${{ matrix.dir }}
node_version: "22"
node_version: "23"
sonar_args: >
-Dsonar.exclusions=**/coverage/**,**/node_modules/**,**/*spec.ts
-Dsonar.organization=bcgov-sonarcloud
Expand Down
4 changes: 2 additions & 2 deletions backend/Dockerfile
Original file line number Diff line number Diff line change
@@ -1,5 +1,5 @@
# Build
FROM node:22.12.0-slim AS build
FROM node:23.5.0-slim AS build

# Copy, build static files; see .dockerignore for exclusions
WORKDIR /app
Expand All @@ -8,7 +8,7 @@ ENV PRISMA_CLI_BINARY_TARGETS=debian-openssl-3.0.x
RUN npm run deploy

# Dependencies
FROM node:22.12.0-slim AS dependencies
FROM node:23.5.0-slim AS dependencies

# Copy, build static files; see .dockerignore for exclusions
WORKDIR /app
Expand Down

0 comments on commit 4e3cb26

Please sign in to comment.