Skip to content

Update dependency @aws-sdk/client-dynamodb to v3.415.0 #79

Update dependency @aws-sdk/client-dynamodb to v3.415.0

Update dependency @aws-sdk/client-dynamodb to v3.415.0 #79

Workflow file for this run

name: CI
on:
push:
branches: [ "main" ]
pull_request:
branches: [ "main" ]
schedule:
- cron: '0 * * * *'
jobs:
lint:
runs-on: ubuntu-latest
name: "Run lint"
steps:
- uses: actions/checkout@v4
- uses: actions/setup-node@v3
with:
node-version: 20.x
cache: 'npm'
- run: npm install
- run: npm run lint
test:
runs-on: ubuntu-latest
needs: lint
env:
TEST_TIME_FACTOR: 10.0
strategy:
matrix:
node-version: [20.x]
steps:
- uses: actions/checkout@v4
- name: Use Node.js ${{ matrix.node-version }}
uses: actions/setup-node@v3
with:
node-version: ${{ matrix.node-version }}
cache: 'npm'
- run: npm install
- run: npm run test