Skip to content
activity

GitHub Action

Start DynamoDB in GitHub Actions

v4.0.0 Latest version

Start DynamoDB in GitHub Actions

activity

Start DynamoDB in GitHub Actions

Starts DynamoDB Local in background as a Docker container for support with GitHub Actions

Installation

Copy and paste the following snippet into your .yml file.

              

- name: Start DynamoDB in GitHub Actions

uses: rrainn/dynamodb-action@v4.0.0

Learn more about this action in rrainn/dynamodb-action

Choose a version

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

- name: Setup DynamoDB Local
  uses: rrainn/dynamodb-action@v2.0.1
  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
    port: 8000
    cors: '*'