Skip to content

[BREAKING CHANGE] Support PATCH operations (partial updates) and bump @azure/cosmos to v3.17.3 #217

[BREAKING CHANGE] Support PATCH operations (partial updates) and bump @azure/cosmos to v3.17.3

[BREAKING CHANGE] Support PATCH operations (partial updates) and bump @azure/cosmos to v3.17.3 #217

Workflow file for this run

name: Build & Test
on:
pull_request:
jobs:
quality:
runs-on: ubuntu-latest
strategy:
matrix:
node: [20, 22]
steps:
- uses: actions/checkout@v3
- name: Additional Checkout
run: git submodule update --init --recursive
- uses: actions/setup-node@v3
with:
node-version: ${{ matrix.node }}
cache: "yarn"
- name: Install Dependencies
run: yarn install --frozen-lockfile
- name: Lint
run: yarn lint
- name: Build
run: yarn build
- name: Test
run: yarn test