Skip to content

Adding DynamoDB

Adding DynamoDB #38

Workflow file for this run

name: Lint
on:
pull_request:
branches:
- master
- main
jobs:
lint:
name: Lint
timeout-minutes: 30
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@v3
- uses: actions/setup-node@v2
with:
cache: 'npm'
node-version: '18.17.0'
- name: Installation
run: npm install
# - name: Check immutable package-lock.json
# run: git diff --exit-code
- name: Lint
run: npm run lint:ci
- name: Prettier Code
run: npm run format:diff