Skip to content

fix(lambda): bump typescript from 5.5.4 to 5.6.3 in /lambdas #970

fix(lambda): bump typescript from 5.5.4 to 5.6.3 in /lambdas

fix(lambda): bump typescript from 5.5.4 to 5.6.3 in /lambdas #970

Workflow file for this run

name: Build lambdas
on:
pull_request:
branches:
- main
paths:
- 'lambdas/**'
jobs:
build:
runs-on: ubuntu-latest
strategy:
matrix:
node: [20]
container:
image: node:${{ matrix.node }}
defaults:
run:
working-directory: ./lambdas
steps:
- uses: actions/checkout@eef61447b9ff4aafe5dcd4e0bbf5d482be7e7871 # v4.2.1
- 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@b4b15b8c7c6ac21ea08fcf65892d2ee8f75cf882 # v4.4.3
if: ${{ failure() }}
with:
name: coverage-reports
path: ./**/coverage
retention-days: 5