Skip to content

Commit cbfd896

Browse files
committed
ci: Create DynamoDB table "CustomKeySession"
1 parent 599455c commit cbfd896

File tree

1 file changed

+5
-0
lines changed

1 file changed

+5
-0
lines changed

.github/workflows/checks.yml

+5
Original file line numberDiff line numberDiff line change
@@ -40,6 +40,11 @@ jobs:
4040
--table-name Session \
4141
--key-schema AttributeName=key,KeyType=HASH \
4242
--attribute-definitions AttributeName=key,AttributeType=S \
43+
--provisioned-throughput ReadCapacityUnits=5,WriteCapacityUnits=5 \
44+
&& aws dynamodb create-table --endpoint-url http://localhost:8000 \
45+
--table-name CustomKeySession \
46+
--key-schema AttributeName=sessionId,KeyType=HASH \
47+
--attribute-definitions AttributeName=sessionId,AttributeType=S \
4348
--provisioned-throughput ReadCapacityUnits=5,WriteCapacityUnits=5
4449
4550
- name: Use Node.js ${{ matrix.node-version }}

0 commit comments

Comments
 (0)