-
Notifications
You must be signed in to change notification settings - Fork 2
[PROD RELEASE] - Jan 26 #12
New issue
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
Merged
Changes from all commits
Commits
Show all changes
22 commits
Select commit
Hold shift + click to select a range
cda0bfc
fix: updated review app url
hentrymartin 940c208
Merge pull request #10 from topcoder-platform/pm-2656
kkartunov ae07f34
Update tc-core-library-js reference
jmgasper 43d959e
Pnpm lock
jmgasper cf5e7a3
Use pnpm for installing dependencies in CircleCI flow
jmgasper 20a439b
Build fix test
jmgasper 5ce8f7f
Build fix
jmgasper a196d73
Build fix
jmgasper 1bea386
Update mock data to match updated challenge statuses.
jmgasper 68bbde6
PM-3458 Expose db client for member api
himaniraghav3 3bb62fd
Update structure following standards
himaniraghav3 6e0d8e9
deploy branch
himaniraghav3 a90771e
fix lint in packages
himaniraghav3 4c2b69f
transpile to js
himaniraghav3 f617d61
exclude packages from lint
himaniraghav3 074e6f6
Update node version
himaniraghav3 fbc7df7
fix volta typo
himaniraghav3 74bba15
update node engines
kkartunov fbf84d5
update nvmrc
himaniraghav3 98e6589
Merge pull request #11 from topcoder-platform/PM-3458
himaniraghav3 c84c807
Update to use userId as the preferred identifier - PS-513
jmgasper d8097d7
Merge branch 'develop' of github.com:topcoder-platform/resource-api-v…
jmgasper File filter
Filter by extension
Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
There are no files selected for viewing
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
| Original file line number | Diff line number | Diff line change |
|---|---|---|
| @@ -1 +1 @@ | ||
| 18.19.0 | ||
| 22.13.1 |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
| Original file line number | Diff line number | Diff line change |
|---|---|---|
| @@ -1,5 +1,5 @@ | ||
| # Use the base image with Node.js | ||
| FROM node:18.20.8-alpine3.21 | ||
| FROM node:22.13.1-alpine | ||
| RUN apk add --update --no-cache openssh-client git | ||
| RUN mkdir -p -m 0600 ~/.ssh && ssh-keyscan github.com >> ~/.ssh/known_hosts | ||
| # Copy the current directory into the Docker image | ||
|
|
@@ -8,9 +8,10 @@ COPY . /resources-api | |
| # Set working directory for future use | ||
| WORKDIR /resources-api | ||
|
|
||
| RUN npm install pnpm -g | ||
|
There was a problem hiding this comment. Choose a reason for hiding this commentThe reason will be displayed to describe this comment to others. Learn more. [ |
||
| # Install the dependencies from package.json | ||
| RUN --mount=type=ssh yarn install | ||
| RUN yarn lint | ||
| RUN yarn lint:fix | ||
| RUN pnpm install | ||
| RUN pnpm lint | ||
| RUN pnpm lint:fix | ||
|
|
||
| CMD node app.js | ||
| CMD pnpm start | ||
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Oops, something went wrong.
Oops, something went wrong.
Add this suggestion to a batch that can be applied as a single commit.
This suggestion is invalid because no changes were made to the code.
Suggestions cannot be applied while the pull request is closed.
Suggestions cannot be applied while viewing a subset of changes.
Only one suggestion per line can be applied in a batch.
Add this suggestion to a batch that can be applied as a single commit.
Applying suggestions on deleted lines is not supported.
You must change the existing code in this line in order to create a valid suggestion.
Outdated suggestions cannot be applied.
This suggestion has been applied or marked resolved.
Suggestions cannot be applied from pending reviews.
Suggestions cannot be applied on multi-line comments.
Suggestions cannot be applied while the pull request is queued to merge.
Suggestion cannot be applied right now. Please check back later.
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
[❗❗
correctness]Ensure that the new Node.js version
22.13.1-alpineis compatible with your application and any dependencies, as upgrading major versions can introduce breaking changes.