Skip to content

chore(lambda): bump @nx/jest from 19.4.0 to 19.4.1 in /lambdas #727

chore(lambda): bump @nx/jest from 19.4.0 to 19.4.1 in /lambdas

chore(lambda): bump @nx/jest from 19.4.0 to 19.4.1 in /lambdas #727

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