Skip to content

chore(deps-dev): bump @aws-sdk/util-dynamodb from 3.883.0 to 3.913.0 #295

chore(deps-dev): bump @aws-sdk/util-dynamodb from 3.883.0 to 3.913.0

chore(deps-dev): bump @aws-sdk/util-dynamodb from 3.883.0 to 3.913.0 #295

Workflow file for this run

name: Tests (unit)
on:
pull_request:
permissions:
contents: read
jobs:
unit:
name: Tests (unit)
runs-on: ubuntu-latest
strategy:
matrix:
node-version: [20.x, 22.x]
steps:
- name: Checkout repository
uses: actions/checkout@08c6903cd8c0fde910a37f88322edcfb5dd907a8 # v5.0.0
- name: Setup Node.js ${{ matrix.node-version }}
uses: actions/setup-node@a0853c24544627f65ddf259abe73b1d18a591444 # v5.0.0
with:
node-version: ${{ matrix.node-version }}
registry-url: https://registry.npmjs.org
- name: Cache npm
uses: actions/cache@0057852bfaa89a56745cba8c7296529d2fc39830 # v4.3.0
with:
path: ~/.npm
key: ${{ runner.os }}-node-${{ hashFiles('**/package-lock.json') }}
restore-keys: |
${{ runner.os }}-node-
- name: Install dependencies
run: |
npm ci
- name: Build
run: |
npm run build --if-present
- name: Unit tests
run: |
npm run test:unit