-
Notifications
You must be signed in to change notification settings - Fork 1
feat!: upgrade dependencies and modernize tooling #56
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
Merged
Changes from all commits
Commits
Show all changes
10 commits
Select commit
Hold shift + click to select a range
bb03977
feat!: upgrade dependencies and modernize tooling
ryanmcafee 26609e7
chore: upgrade @jupiterone/typescript-tools to v20
ryanmcafee 5f25d0b
Upgrade uuid package
ryanmcafee f51db0a
Fix GHA CI build/release/publish workflow
ryanmcafee 4c8c0cd
Regenerate package-lock.json file for node 24 support
ryanmcafee 283fdaf
Run on self hosted gha runner which includes docker-compose
ryanmcafee e174042
Do not specify OS
ryanmcafee 1c8bcac
Properly set matrix node version to node 24
ryanmcafee db188af
Use ubuntu-latest runner for GHA workflow
ryanmcafee 31ddaff
Use docker compose plugin syntax instead of docker-compose
ryanmcafee 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
| Original file line number | Diff line number | Diff line change |
|---|---|---|
| @@ -1,26 +1,26 @@ | ||
| { | ||
| "root": true, | ||
| "extends": ["@jupiterone/eslint-config/node"], | ||
| "extends": ["@jupiterone/eslint-config/node18"], | ||
| "ignorePatterns": [ | ||
| "node_modules/", | ||
| "dist/", | ||
| "work/", | ||
| "coverage/", | ||
| "bak/", | ||
| "index.js", | ||
| "tools/", | ||
| "tools/" | ||
| ], | ||
| "parserOptions": { | ||
| "es6": true, | ||
| "project": "./tsconfig.json", | ||
| "tsconfigRootDir": ".", | ||
| "tsconfigRootDir": "." | ||
| }, | ||
| "overrides": [ | ||
| { | ||
| "files": ["**/*.spec.js", "**/*.spec.jsx"], | ||
| "env": { | ||
| "jest": true, | ||
| }, | ||
| }, | ||
| ], | ||
| "jest": true | ||
| } | ||
| } | ||
| ] | ||
| } |
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,7 +1,7 @@ | ||
| dist/ | ||
| coverage/ | ||
| node_modules/ | ||
| yarn-error.log | ||
| npm-debug.log | ||
| .DS_Store | ||
| .eslintcache | ||
| .idea | ||
|
|
||
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,6 +1,6 @@ | ||
| { | ||
| "hooks": { | ||
| "pre-commit": "lint-staged", | ||
| "pre-push": "yarn build" | ||
| "pre-push": "npm run build" | ||
| } | ||
| } |
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 |
|---|---|---|
| @@ -0,0 +1 @@ | ||
| 24 |
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,17 +1,15 @@ | ||
| version: '3' | ||
|
|
||
| services: | ||
| dynamodb: | ||
| image: 'public.ecr.aws/aws-dynamodb-local/aws-dynamodb-local:1.19.0' | ||
| image: 'amazon/dynamodb-local:latest' | ||
| ports: | ||
| - 8000:8000 | ||
| test: | ||
| image: public.ecr.aws/docker/library/node:18-alpine3.16 | ||
| image: node:24-alpine | ||
| environment: | ||
| - DYNAMODB_ENDPOINT=http://dynamodb:8000 | ||
| depends_on: | ||
| - dynamodb | ||
| volumes: | ||
| - ./:/opt/work:delegated | ||
| working_dir: /opt/work | ||
| command: sh -c "yarn jest --ci" | ||
| command: sh -c "npm test -- --ci" | ||
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.
See docs: https://docs.aws.amazon.com/amazondynamodb/latest/developerguide/DynamoDBLocal.DownloadingAndRunning.html
https://hub.docker.com/r/amazon/dynamodb-local