Ecosyste.ms: Awesome
An open API service indexing awesome lists of open source software.
https://github.com/rrainn/dynamodb-action
📦 GitHub Action - DynamoDB Local GitHub Action
https://github.com/rrainn/dynamodb-action
Last synced: 1 day ago
JSON representation
📦 GitHub Action - DynamoDB Local GitHub Action
- Host: GitHub
- URL: https://github.com/rrainn/dynamodb-action
- Owner: rrainn
- License: mit
- Created: 2019-11-03T22:00:57.000Z (about 5 years ago)
- Default Branch: main
- Last Pushed: 2024-09-14T01:33:23.000Z (4 months ago)
- Last Synced: 2024-12-30T21:14:21.623Z (9 days ago)
- Language: JavaScript
- Homepage: https://github.com/marketplace/actions/start-dynamodb-in-github-actions
- Size: 548 KB
- Stars: 51
- Watchers: 3
- Forks: 14
- Open Issues: 5
-
Metadata Files:
- Readme: README.md
- License: LICENSE
Awesome Lists containing this project
README
# dynamodb-action
This GitHub Action allows you to super easily setup a DynamoDB Local instance within GitHub Actions to use DynamoDB within your CI system.
## Example Usage
Below is the default commands and settings for this action. For any properties that are undefined, the value will be false.
#### .github/workflows/ci.yml
```yml
- name: Setup DynamoDB Local
uses: rrainn/[email protected]
with:
dbPath: # undefined by default, if this is undefined inMemory will be used
sharedDb: # undefined by default
delayTransientStatuses: # undefined by default
optimizeDbBeforeStartup: # undefined by default
version: # "latest" by default
port: 8000
cors: '*'
```