Skip to content

chore(deps): bump body-parser from 1.20.2 to 1.20.3 #184

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

chore(deps): bump body-parser from 1.20.2 to 1.20.3 #184

Workflow file for this run

name: Test
on: [push, pull_request]
jobs:
build:
runs-on: ubuntu-latest
strategy:
matrix:
node: [ '18', '20' ]
name: Run jest and ESLint (Node ${{ matrix.node }})
steps:
- uses: actions/checkout@v3
- uses: actions/setup-node@v3
with:
node-version: ${{ matrix.node }}
- uses: pnpm/action-setup@v2
with:
version: 8
- run: pnpm install --frozen-lockfile
- run: pnpm run lint:all
- run: pnpm test
- name: Coveralls
if: ${{ matrix.node == '18' }}
uses: coverallsapp/github-action@master
with:
github-token: ${{ secrets.GITHUB_TOKEN }}