Skip to content

Fix issue with Unique Records not being removed when the unique fields are value fields #634

Fix issue with Unique Records not being removed when the unique fields are value fields

Fix issue with Unique Records not being removed when the unique fields are value fields #634

Workflow file for this run

# This workflow will do a clean install of node dependencies, build the source code and run tests across different versions of node
# For more information see: https://help.github.com/actions/language-and-framework-guides/using-nodejs-with-github-actions
name: build
on:
push:
branches: [ main ]
pull_request:
branches: [ main ]
jobs:
build:
runs-on: ubuntu-latest
strategy:
matrix:
node-version: [16.x]
steps:
- uses: actions/checkout@v2
- uses: actions/setup-java@v2
with:
distribution: 'adopt'
java-version: '11'
- name: Use Node.js ${{ matrix.node-version }}
uses: actions/setup-node@v2
with:
node-version: ${{ matrix.node-version }}
- run: npm ci
- run: npm run build --if-present
- run: npm run lint --if-present
- name: DynamoDB Client v2 Tests
run: npm run test:v2
- name: DynamoDB Client v3 Tests
run: npm run test:v3