Skip to content

fix(lambda): bump the aws group across 1 directory with 6 updates #157

fix(lambda): bump the aws group across 1 directory with 6 updates

fix(lambda): bump the aws group across 1 directory with 6 updates #157

Workflow file for this run

name: Build lambdas
on:
pull_request:
branches:
- main
paths:
- 'lambdas/**'
jobs:
build:
runs-on: ubuntu-latest
strategy:
matrix:
node: [18]
container:
image: node:${{ matrix.node }}
defaults:
run:
working-directory: ./lambdas
steps:
- uses: actions/checkout@b4ffde65f46336ab88eb53be808477a3936bae11 # v3.2.0
- name: Install dependencies
run: yarn install --frozen-lockfile
- name: Run prettier
run: yarn format-check
- name: Run linter
run: yarn lint
- name: Run tests
id: test
run: yarn test
- name: Build distribution
run: yarn build
- name: Upload coverage report
uses: actions/upload-artifact@a8a3f3ad30e3422c9c7b888a15615d19a852ae32 # v31.2
if: ${{ failure() }}
with:
name: coverage-reports
path: ./**/coverage
retention-days: 5