Skip to content

chore(deps): bump @aws-sdk/client-dynamodb from 3.668.0 to 3.669.0 #1342

chore(deps): bump @aws-sdk/client-dynamodb from 3.668.0 to 3.669.0

chore(deps): bump @aws-sdk/client-dynamodb from 3.668.0 to 3.669.0 #1342

Workflow file for this run

name: Test and lint
on:
pull_request:
push:
branches:
- main
merge_group:
jobs:
test:
runs-on: ubuntu-latest
steps:
- name: Checkout repository
uses: actions/checkout@eef61447b9ff4aafe5dcd4e0bbf5d482be7e7871 # v4.2.1
- name: Reconfigure git to not use auth in URLs
run: >
git config --global url."https://github.com/".insteadOf
[email protected]:
- name: Enable corepack
run: |
corepack enable
- name: Set up Node.js
uses: actions/setup-node@0a44ba7841725637a19e28fa30b79a866c81b0a6 # v4.0.4
env:
COREPACK_ENABLE_STRICT: false
with:
cache-dependency-path: pnpm-lock.yaml
node-version-file: "package.json"
cache: "pnpm"
- name: Install dependencies
run: pnpm install
- name: Build generated libraries
uses: nick-fields/retry@7152eba30c6575329ac0576536151aca5a72780e # v3.0.0
with:
max_attempts: 5
timeout_minutes: 5
command: pnpm gen
retry_on: error
- name: Run tests
run: pnpm test
- name: Run linter
run: pnpm lint .
- name: Run prettier
run: pnpm prettier --check .