We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent 599455c commit cbfd896Copy full SHA for cbfd896
.github/workflows/checks.yml
@@ -40,6 +40,11 @@ jobs:
40
--table-name Session \
41
--key-schema AttributeName=key,KeyType=HASH \
42
--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 \
48
--provisioned-throughput ReadCapacityUnits=5,WriteCapacityUnits=5
49
50
- name: Use Node.js ${{ matrix.node-version }}
0 commit comments