Skip to content

chore: Bump the npm_and_yarn group across 4 directories with 21 updates #2

chore: Bump the npm_and_yarn group across 4 directories with 21 updates

chore: Bump the npm_and_yarn group across 4 directories with 21 updates #2

Workflow file for this run

name: Lambda Webhook
on:
push:
branches:
- develop
pull_request:
paths:
- .github/workflows/lambda-webhook.yml
- "modules/webhook/lambdas/webhook/**"
jobs:
build:
runs-on: ubuntu-latest
strategy:
matrix:
node: [14, 16]
container:
image: node:${{ matrix.node }}
defaults:
run:
working-directory: modules/webhook/lambdas/webhook
steps:
- uses: actions/checkout@v3
- name: Install dependencies
run: yarn install
- name: Run prettier
run: yarn format-check
- name: Run linter
run: yarn lint
- name: Run tests
run: yarn test
- name: Build distribution
run: yarn build