Skip to content

Commit

Permalink
Sync develop to main (#18)
Browse files Browse the repository at this point in the history
  • Loading branch information
danswann authored Oct 6, 2023
1 parent 4e5261f commit fb22eb4
Show file tree
Hide file tree
Showing 13 changed files with 318 additions and 267 deletions.
12 changes: 12 additions & 0 deletions .github/dependabot.yml
Original file line number Diff line number Diff line change
@@ -0,0 +1,12 @@
version: 2
updates:
- package-ecosystem: npm
directory: /
schedule:
interval: weekly
target-branch: develop
- package-ecosystem: npm
directory: /packages/web
schedule:
interval: weekly
target-branch: develop
4 changes: 2 additions & 2 deletions .github/workflows/pr_checks.yml
Original file line number Diff line number Diff line change
Expand Up @@ -13,7 +13,7 @@ jobs:
name: Run linter
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@v3
- uses: actions/checkout@v4
- uses: actions/setup-node@v3
with:
node-version: ${{ vars.NODE_VERSION_STRING }}
Expand All @@ -30,7 +30,7 @@ jobs:
name: Run typechecks
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@v3
- uses: actions/checkout@v4
- uses: actions/setup-node@v3
with:
node-version: ${{ vars.NODE_VERSION_STRING }}
Expand Down
2 changes: 1 addition & 1 deletion .github/workflows/push_develop_deploy.yml
Original file line number Diff line number Diff line change
Expand Up @@ -16,7 +16,7 @@ jobs:
name: Deploy to development AWS account
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@v3
- uses: actions/checkout@v4
- uses: actions/setup-node@v3
with:
node-version: ${{ vars.NODE_VERSION_STRING }}
Expand Down
2 changes: 1 addition & 1 deletion .github/workflows/push_main_deploy.yml
Original file line number Diff line number Diff line change
Expand Up @@ -16,7 +16,7 @@ jobs:
name: Deploy to production AWS account
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@v3
- uses: actions/checkout@v4
- uses: actions/setup-node@v3
with:
node-version: ${{ vars.NODE_VERSION_STRING }}
Expand Down
222 changes: 120 additions & 102 deletions package-lock.json

Large diffs are not rendered by default.

4 changes: 2 additions & 2 deletions package.json
Original file line number Diff line number Diff line change
Expand Up @@ -15,14 +15,14 @@
"devDependencies": {
"@tsconfig/node18": "^18.2.1",
"@typescript-eslint/eslint-plugin": "^6.4.1",
"aws-cdk-lib": "2.91.0",
"aws-cdk-lib": "2.95.1",
"constructs": "10.2.69",
"eslint": "^8.48.0",
"eslint-config-standard-with-typescript": "^39.0.0",
"eslint-plugin-import": "^2.28.1",
"eslint-plugin-n": "^16.0.2",
"eslint-plugin-promise": "^6.1.1",
"sst": "^2.24.16",
"sst": "2.26.11",
"typescript": "^5.2.2"
},
"workspaces": []
Expand Down
334 changes: 178 additions & 156 deletions packages/web/package-lock.json

Large diffs are not rendered by default.

2 changes: 1 addition & 1 deletion packages/web/package.json
Original file line number Diff line number Diff line change
Expand Up @@ -33,7 +33,7 @@
"@types/react-dom": "18.x",
"eslint": "latest",
"eslint-config-next": "latest",
"sst": "latest",
"sst": "2.26.11",
"typescript": "latest"
}
}
Binary file removed packages/web/src/content/images/grouch.jpg
Binary file not shown.
Binary file removed packages/web/src/content/images/grouch.png
Binary file not shown.
Binary file not shown.
Binary file removed packages/web/src/content/images/projects/trg.png
Binary file not shown.
3 changes: 1 addition & 2 deletions stacks/Site.ts
Original file line number Diff line number Diff line change
Expand Up @@ -28,13 +28,12 @@ export function Site({ stack }: StackContext) {
waitForInvalidation: process.env.CI == undefined ? true : false,

// Nextjs Lambda function settings
timeout: '5 seconds',
memorySize: '256 MB',
imageOptimization: {
memorySize: '512 MB'
},
runtime: 'nodejs18.x',
warm: stack.stage === STAGE_PRODUCTION ? 20 : undefined,
warm: stack.stage === STAGE_PRODUCTION ? 10 : undefined,

// General CDK settings forwarded to CDK construct
cdk: {
Expand Down

0 comments on commit fb22eb4

Please sign in to comment.