-
Notifications
You must be signed in to change notification settings - Fork 1
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
chore: upgrade node version to >=20 and other minor improvements (#739)
* feat: corepack set packageManager field on package.json file * fix: update to latest version of pnpm * fix: only require major version of node in package.json * feat: .nvmrc in case someone uses it * chore: set pnpm/action-setup to v4 * chore: update aws-actions/configure-aws-credentials to v4 * fix: for docker alpine specify only major node version * fix: delete the pnpm version hash from package.json
- Loading branch information
1 parent
cdfad35
commit e0702a9
Showing
10 changed files
with
6,433 additions
and
5,072 deletions.
There are no files selected for viewing
This file contains 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 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 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 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 |
---|---|---|
|
@@ -8,9 +8,7 @@ jobs: | |
uses: actions/checkout@v4 | ||
|
||
- name: Configure package manager | ||
uses: pnpm/action-setup@v2 | ||
with: | ||
version: latest | ||
uses: pnpm/action-setup@v4 | ||
|
||
- name: Configure Node | ||
uses: actions/[email protected] | ||
|
This file contains 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 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 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 |
---|---|---|
@@ -0,0 +1 @@ | ||
lts/Iron |
This file contains 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,4 +1,4 @@ | ||
FROM node:20.14.0-alpine AS base | ||
FROM node:20-alpine AS base | ||
WORKDIR /app | ||
|
||
RUN npm install --global pnpm | ||
|
This file contains 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 |
---|---|---|
|
@@ -2,8 +2,9 @@ | |
"repository": "[email protected]:galaniprojects/ctypehub.git", | ||
"license": "BSD-4-Clause", | ||
"type": "module", | ||
"packageManager": "[email protected]", | ||
"engines": { | ||
"node": ">= 20.14.0" | ||
"node": ">=20" | ||
}, | ||
"scripts": { | ||
"prettify": "prettier --write \"src/**/*.astro\" \"src/**/*.ts*\" \"src/**/*.css*\"", | ||
|
@@ -79,4 +80,4 @@ | |
"vitest": "^0.34.6", | ||
"vitest-github-actions-reporter": "^0.11.1" | ||
} | ||
} | ||
} |
Oops, something went wrong.