Skip to content

fix(collection): set no limit to the body size on collection update (… #800

fix(collection): set no limit to the body size on collection update (…

fix(collection): set no limit to the body size on collection update (… #800

Workflow file for this run

name: Node Tests CI
on:
push:
branches:
- main
pull_request:
jobs:
test:
runs-on: ubuntu-latest
strategy:
matrix:
node-version: [ '14' ]
steps:
- uses: actions/checkout@v2
- name: Use Node.js ${{ matrix.node-version }}
uses: actions/setup-node@v2
with:
node-version: ${{ matrix.node-version }}
cache: npm
- name: Install Dependencies
run: npm ci
- name: Update browserslist
run: npx browserslist@latest --update-db
- name: Run Unit Tests
run: npm run test:ci