Skip to content

Fix incorrectly documented QueryResponse type in typescript.mdx #154

Fix incorrectly documented QueryResponse type in typescript.mdx

Fix incorrectly documented QueryResponse type in typescript.mdx #154

Workflow file for this run

name: cicd
on:
push:
branches: [master]
pull_request:
branches: [master]
env:
LOCAL_DYNAMO_ENDPOINT: "http://dynamodb:8000"
AWS_REGION: "us-east-1"
AWS_ACCESS_KEY_ID: "test"
AWS_SECRET_ACCESS_KEY: "test"
jobs:
build:
timeout-minutes: 15
runs-on: ubuntu-latest
strategy:
matrix:
node-version: [14.x, 16.x, 18.x, 20.x]
steps:
- uses: actions/checkout@v3
- name: Use Node.js ${{ matrix.node-version }}
uses: actions/setup-node@v3
with:
node-version: ${{ matrix.node-version }}
- name: Login to DockerHub
uses: docker/login-action@v1
with:
username: ${{ secrets.DOCKER_USERNAME }}
password: ${{ secrets.DOCKER_PASSWORD }}
- name: Install dependencies
run: npm install
- name: Run tests
run: npm test