Skip to content

build(deps): bump body-parser from 2.2.2 to 2.3.0 in /examples/basic #30

build(deps): bump body-parser from 2.2.2 to 2.3.0 in /examples/basic

build(deps): bump body-parser from 2.2.2 to 2.3.0 in /examples/basic #30

name: Build and Test
on:
pull_request:
types:
- opened
- synchronize
- reopened
- ready_for_review
branches:
- master
jobs:
build-and-test:
name: Build and Test
runs-on: ubuntu-latest
permissions:
contents: read
steps:
- name: Checkout
uses: actions/checkout@v4
with:
fetch-depth: 0
- name: Setup Node.js
uses: actions/setup-node@v4
with:
node-version: '22'
- name: Install dependencies
run: npm clean-install
- name: Verify the integrity of provenance attestations and registry signatures for installed dependencies
run: npm audit signatures
- name: Build
run: npm run build
- name: Verify commit messages
run: npx semantic-release --dry-run
env:
GITHUB_TOKEN: ${{ secrets.GITHUB_TOKEN }}