Skip to content

Common JSON Expression Operators - 2 #133

Common JSON Expression Operators - 2

Common JSON Expression Operators - 2 #133

Workflow file for this run

name: Node.js CI
on:
push:
branches: [ master ]
pull_request:
branches: [ master ]
jobs:
build:
runs-on: ubuntu-latest
strategy:
matrix:
node-version: [18.x, 20.x]
steps:
- uses: actions/checkout@v3
- name: Use Node.js ${{ matrix.node-version }}
uses: actions/setup-node@v3
with:
node-version: ${{ matrix.node-version }}
- run: yarn install --frozen-lockfile
- run: yarn build:all
- run: yarn lint
- run: yarn prettier:check
- run: yarn test:ci --ci
- run: yarn test:cli:pointer
- run: yarn test:cli:patch
- run: yarn test:cli:pack
- run: PORT=9999 yarn test:reactive-rpc
- run: yarn demo:json-patch
- run: yarn demo:json-pointer