Skip to content

BAU: Bump connect-dynamodb from 3.0.3 to 3.0.5 #806

BAU: Bump connect-dynamodb from 3.0.3 to 3.0.5

BAU: Bump connect-dynamodb from 3.0.3 to 3.0.5 #806

Workflow file for this run

name: Pre-merge checks
on:
pull_request:
types:
- opened
- reopened
- ready_for_review
- synchronize
push:
branches:
- main
jobs:
pre-commit:
runs-on: ubuntu-latest
steps:
- name: Check out repository code
uses: actions/checkout@v4
- name: Set up Python
uses: actions/setup-python@v5
with:
python-version: '3.x'
- name: Pre-commit github action
uses: pre-commit/[email protected]
with:
extra_args: "detect-secrets --all-files"
- name: SAM Validate
run: sam validate --region eu-west-2 -t deploy/template.yaml --lint
run-tests:
runs-on: ubuntu-latest
steps:
- name: Checkout
uses: actions/checkout@v4
- name: Use Node.js 20.x
uses: actions/setup-node@v4
with:
node-version: 20
cache: "yarn"
- name: Install dependencies
run: yarn install
- name: Run lint
run: yarn lint
- name: Run test and write coverage
run: yarn test:coverage
- name: Run browser tests
run: yarn run test:browser:ci
- name: Run sonarcloud scan
if: ${{ github.actor != 'dependabot[bot]' }}
uses: SonarSource/sonarcloud-github-action@master
env:
GITHUB_TOKEN: ${{ secrets.GITHUB_TOKEN }}
SONAR_TOKEN: ${{ secrets.SONAR_TOKEN }}