Skip to content

fix(lambda): Bump the aws group in /lambdas with 5 updates #278

fix(lambda): Bump the aws group in /lambdas with 5 updates

fix(lambda): Bump the aws group in /lambdas with 5 updates #278

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@3df4ab11eba7bda6032a0b82a6bb43b11571feac # 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@0b7f8abb1508181956e8e162db84b466c27e18ce # v31.2
if: ${{ failure() }}
with:
name: coverage-reports
path: ./**/coverage
retention-days: 5