Skip to content

chore(deps): bump body-parser from 1.20.0 to 1.20.3 #60

chore(deps): bump body-parser from 1.20.0 to 1.20.3

chore(deps): bump body-parser from 1.20.0 to 1.20.3 #60

Workflow file for this run

name: Pull Request
on:
pull_request:
branches: [ "main" ]
jobs:
release:
runs-on: macos-latest
steps:
- name: Checkout
uses: actions/checkout@v4
with:
fetch-depth: 0
- name: Setup Node.js
uses: actions/setup-node@v4
with:
node-version: '20.x'
cache: 'npm'
- name: Install dependencies
run: npm ci
- name: Build
run: npm run build
- name: Test (Node.js)
run: npm run test
- name: Install Playwright supported browsers
run: npx playwright install
- name: Test (Browsers)
run: npm run test:browsers
- name: 'Publish coverage reports'
uses: codecov/codecov-action@v4
- name: Generate documentation
run: npm run gen-doc